| Index: components/keyed_service/content/browser_context_dependency_manager.cc | 
| diff --git a/components/keyed_service/content/browser_context_dependency_manager.cc b/components/keyed_service/content/browser_context_dependency_manager.cc | 
| index 2e441d99e43e4ff5ead2ed8e15342ccb68ecc490..fe134b9649014ae0f4e7a29249d2f0cc84dc1a67 100644 | 
| --- a/components/keyed_service/content/browser_context_dependency_manager.cc | 
| +++ b/components/keyed_service/content/browser_context_dependency_manager.cc | 
| @@ -60,17 +60,15 @@ BrowserContextDependencyManager:: | 
| return will_create_browser_context_services_callbacks_.Add(callback); | 
| } | 
|  | 
| -#ifndef NDEBUG | 
| void BrowserContextDependencyManager::AssertBrowserContextWasntDestroyed( | 
| -    content::BrowserContext* context) { | 
| +    content::BrowserContext* context) const { | 
| DependencyManager::AssertContextWasntDestroyed(context); | 
| } | 
|  | 
| -void BrowserContextDependencyManager::MarkBrowserContextLiveForTesting( | 
| +void BrowserContextDependencyManager::MarkBrowserContextLive( | 
| content::BrowserContext* context) { | 
| -  DependencyManager::MarkContextLiveForTesting(context); | 
| +  DependencyManager::MarkContextLive(context); | 
| } | 
| -#endif  // NDEBUG | 
|  | 
| // static | 
| BrowserContextDependencyManager* | 
|  |