Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1777)

Unified Diff: content/shell/shell_browser_context.h

Issue 7989001: Remove use of default request context and fix use of speech censor flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update SpeechInputPreferences when preference changes Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/shell/shell_browser_context.h
diff --git a/content/shell/shell_browser_context.h b/content/shell/shell_browser_context.h
index feed65df0b9b77124e333377ba09a22b3d129400..8372a79aa3a1c18bada3e6b26f502a89f161f0dc 100644
--- a/content/shell/shell_browser_context.h
+++ b/content/shell/shell_browser_context.h
@@ -15,6 +15,7 @@ class DownloadManager;
class DownloadManagerDelegate;
class DownloadStatusUpdater;
class GeolocationPermissionContext;
+class SpeechInputPreferences;
class HostZoomMap;
class SSLHostState;
@@ -42,6 +43,7 @@ class ShellBrowserContext : public BrowserContext {
virtual HostZoomMap* GetHostZoomMap() OVERRIDE;
virtual GeolocationPermissionContext*
GetGeolocationPermissionContext() OVERRIDE;
+ virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE;
virtual bool DidLastSessionExitCleanly() OVERRIDE;
virtual quota::QuotaManager* GetQuotaManager() OVERRIDE;
virtual WebKitContext* GetWebKitContext() OVERRIDE;
@@ -61,6 +63,7 @@ class ShellBrowserContext : public BrowserContext {
scoped_refptr<net::URLRequestContextGetter> url_request_getter_;
scoped_refptr<HostZoomMap> host_zoom_map_;
scoped_refptr<GeolocationPermissionContext> geolocation_permission_context_;
+ scoped_refptr<SpeechInputPreferences> speech_input_preferences_;
scoped_refptr<WebKitContext> webkit_context_;
scoped_refptr<ChromeAppCacheService> appcache_service_;
scoped_refptr<webkit_database::DatabaseTracker> db_tracker_;

Powered by Google App Engine
This is Rietveld 408576698