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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
// Copyright 2014 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 "components/keyed_service/content/browser_context_dependency_manager.h"
#include "base/memory/singleton.h"
#include "base/trace_event/trace_event.h"
#include "content/public/browser/browser_context.h"
#ifndef NDEBUG
#include "base/command_line.h"
#include "base/files/file_util.h"
// Dumps dependency information about our browser context keyed services
// into a dot file in the browser context directory.
const char kDumpBrowserContextDependencyGraphFlag[] =
"dump-browser-context-graph";
#endif // NDEBUG
void BrowserContextDependencyManager::RegisterProfilePrefsForServices(
content::BrowserContext* context,
user_prefs::PrefRegistrySyncable* pref_registry) {
TRACE_EVENT0(
"browser",
"BrowserContextDependencyManager::RegisterProfilePrefsForServices");
RegisterPrefsForServices(context, pref_registry);
}
void BrowserContextDependencyManager::CreateBrowserContextServices(
content::BrowserContext* context) {
DoCreateBrowserContextServices(context, false);
}
void BrowserContextDependencyManager::CreateBrowserContextServicesForTest(
content::BrowserContext* context) {
DoCreateBrowserContextServices(context, true);
}
void BrowserContextDependencyManager::DoCreateBrowserContextServices(
content::BrowserContext* context,
bool is_testing_context) {
TRACE_EVENT0(
"browser",
"BrowserContextDependencyManager::DoCreateBrowserContextServices")
will_create_browser_context_services_callbacks_.Notify(context);
DependencyManager::CreateContextServices(context, is_testing_context);
}
void BrowserContextDependencyManager::DestroyBrowserContextServices(
content::BrowserContext* context) {
DependencyManager::DestroyContextServices(context);
}
std::unique_ptr<
base::CallbackList<void(content::BrowserContext*)>::Subscription>
BrowserContextDependencyManager::
RegisterWillCreateBrowserContextServicesCallbackForTesting(
const base::Callback<void(content::BrowserContext*)>& callback) {
return will_create_browser_context_services_callbacks_.Add(callback);
}
#ifndef NDEBUG
void BrowserContextDependencyManager::AssertBrowserContextWasntDestroyed(
content::BrowserContext* context) {
DependencyManager::AssertContextWasntDestroyed(context);
}
void BrowserContextDependencyManager::MarkBrowserContextLiveForTesting(
content::BrowserContext* context) {
DependencyManager::MarkContextLiveForTesting(context);
}
#endif // NDEBUG
// static
BrowserContextDependencyManager*
BrowserContextDependencyManager::GetInstance() {
return base::Singleton<BrowserContextDependencyManager>::get();
}
BrowserContextDependencyManager::BrowserContextDependencyManager() {
}
BrowserContextDependencyManager::~BrowserContextDependencyManager() {
}
#ifndef NDEBUG
void BrowserContextDependencyManager::DumpContextDependencies(
base::SupportsUserData* context) const {
// Whenever we try to build a destruction ordering, we should also dump a
// dependency graph to "/path/to/context/context-dependencies.dot".
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
kDumpBrowserContextDependencyGraphFlag)) {
base::FilePath dot_file =
static_cast<const content::BrowserContext*>(context)
->GetPath()
.AppendASCII("browser-context-dependencies.dot");
DumpDependenciesAsGraphviz("BrowserContext", dot_file);
}
}
#endif // NDEBUG
|