summaryrefslogtreecommitdiff
path: root/chromium/extensions/browser/api/display_source/display_source_connection_delegate_factory.cc
blob: 5495661ae0dedea0a8cea2ed60652ca01590666c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/browser/api/display_source/display_source_connection_delegate_factory.h"

#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/extensions_browser_client.h"

namespace extensions {

using content::BrowserContext;

// static
DisplaySourceConnectionDelegate*
DisplaySourceConnectionDelegateFactory::GetForBrowserContext(
    BrowserContext* browser_context) {
  return static_cast<DisplaySourceConnectionDelegate*>(
      GetInstance()->GetServiceForBrowserContext(browser_context, true));
}

// static
DisplaySourceConnectionDelegateFactory*
DisplaySourceConnectionDelegateFactory::GetInstance() {
  return base::Singleton<DisplaySourceConnectionDelegateFactory>::get();
}

DisplaySourceConnectionDelegateFactory::DisplaySourceConnectionDelegateFactory()
    : BrowserContextKeyedServiceFactory(
          "DisplaySourceConnectionDelegate",
          BrowserContextDependencyManager::GetInstance()) {}

DisplaySourceConnectionDelegateFactory::
    ~DisplaySourceConnectionDelegateFactory() {}

KeyedService* DisplaySourceConnectionDelegateFactory::BuildServiceInstanceFor(
    BrowserContext* browser_context) const {
  DCHECK_CURRENTLY_ON(content::BrowserThread::UI);

  DisplaySourceConnectionDelegate* delegate = nullptr;
  // TODO(mikhail): Add implementation.
  return delegate;
}

BrowserContext* DisplaySourceConnectionDelegateFactory::GetBrowserContextToUse(
    BrowserContext* context) const {
  return ExtensionsBrowserClient::Get()->GetOriginalContext(context);
}

bool DisplaySourceConnectionDelegateFactory::
    ServiceIsCreatedWithBrowserContext() const {
  return false;
}

bool DisplaySourceConnectionDelegateFactory::ServiceIsNULLWhileTesting() const {
  return false;
}

}  // namespace extensions