| Index: android_webview/browser/aw_browser_context.h
|
| diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h
|
| index 4141c3fc03832d732bbf14494c6ac83d0e715584..4be97653f171adea328a3b05010b0e3eee8794e8 100644
|
| --- a/android_webview/browser/aw_browser_context.h
|
| +++ b/android_webview/browser/aw_browser_context.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "android_webview/browser/aw_download_manager_delegate.h"
|
| #include "android_webview/browser/aw_message_port_service.h"
|
| +#include "android_webview/browser/aw_metrics_service_client.h"
|
| #include "android_webview/browser/aw_ssl_host_state_delegate.h"
|
| #include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| @@ -84,8 +85,9 @@ class AwBrowserContext : public content::BrowserContext,
|
| static void SetDataReductionProxyEnabled(bool enabled);
|
| static void SetLegacyCacheRemovalDelayForTest(int delay_ms);
|
|
|
| - // Maps to BrowserMainParts::PreMainMessageLoopRun.
|
| + // These map to BrowserMainParts::Pre/PostMainMessageLoopRun.
|
| void PreMainMessageLoopRun();
|
| + void PostMainMessageLoopRun();
|
|
|
| // These methods map to Add methods in visitedlink::VisitedLinkMaster.
|
| void AddVisitedURLs(const std::vector<GURL>& urls);
|
| @@ -100,17 +102,12 @@ class AwBrowserContext : public content::BrowserContext,
|
| content::URLRequestInterceptorScopedVector request_interceptors);
|
|
|
| AwQuotaManagerBridge* GetQuotaManagerBridge();
|
| -
|
| AwFormDatabaseService* GetFormDatabaseService();
|
| -
|
| data_reduction_proxy::DataReductionProxySettings*
|
| GetDataReductionProxySettings();
|
| -
|
| data_reduction_proxy::DataReductionProxyIOData*
|
| GetDataReductionProxyIOData();
|
| -
|
| AwURLRequestContextGetter* GetAwURLRequestContext();
|
| -
|
| AwMessagePortService* GetMessagePortService();
|
|
|
| policy::URLBlacklistManager* GetURLBlacklistManager();
|
|
|