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
|
// Copyright 2014 The Chromium Authors
// 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/no_destructor.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(
user_prefs::PrefRegistrySyncable* pref_registry) {
TRACE_EVENT0(
"browser",
"BrowserContextDependencyManager::RegisterProfilePrefsForServices");
RegisterPrefsForServices(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");
create_services_callbacks_.Notify(context);
DependencyManager::CreateContextServices(context, is_testing_context);
}
void BrowserContextDependencyManager::DestroyBrowserContextServices(
content::BrowserContext* context) {
DependencyManager::DestroyContextServices(context);
}
base::CallbackListSubscription
BrowserContextDependencyManager::RegisterCreateServicesCallbackForTesting(
const CreateServicesCallback& callback) {
return create_services_callbacks_.Add(callback);
}
void BrowserContextDependencyManager::AssertBrowserContextWasntDestroyed(
content::BrowserContext* context) const {
DependencyManager::AssertContextWasntDestroyed(context);
}
void BrowserContextDependencyManager::MarkBrowserContextLive(
content::BrowserContext* context) {
DependencyManager::MarkContextLive(context);
}
// static
BrowserContextDependencyManager*
BrowserContextDependencyManager::GetInstance() {
static base::NoDestructor<BrowserContextDependencyManager> factory;
return factory.get();
}
BrowserContextDependencyManager::BrowserContextDependencyManager() {
}
BrowserContextDependencyManager::~BrowserContextDependencyManager() {
}
#ifndef NDEBUG
void BrowserContextDependencyManager::DumpContextDependencies(
void* 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<content::BrowserContext*>(context)->GetPath().AppendASCII(
"browser-context-dependencies.dot");
DumpDependenciesAsGraphviz("BrowserContext", dot_file);
}
}
#endif // NDEBUG
|