| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 const GURL& source_origin, | 201 const GURL& source_origin, |
| 202 WindowContainerType container_type, | 202 WindowContainerType container_type, |
| 203 content::ResourceContext* context, | 203 content::ResourceContext* context, |
| 204 int render_process_id, | 204 int render_process_id, |
| 205 bool* no_javascript_access) OVERRIDE; | 205 bool* no_javascript_access) OVERRIDE; |
| 206 virtual std::string GetWorkerProcessTitle( | 206 virtual std::string GetWorkerProcessTitle( |
| 207 const GURL& url, content::ResourceContext* context) OVERRIDE; | 207 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 208 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 208 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 209 virtual content::SpeechRecognitionManagerDelegate* | 209 virtual content::SpeechRecognitionManagerDelegate* |
| 210 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 210 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 211 virtual content::TtsDispatcherHostDelegate* |
| 212 GetTtsDispatcherHostDelegate() OVERRIDE; |
| 211 virtual net::NetLog* GetNetLog() OVERRIDE; | 213 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 212 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 214 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 213 virtual bool IsFastShutdownPossible() OVERRIDE; | 215 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 214 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 216 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 215 const GURL& url, | 217 const GURL& url, |
| 216 webkit_glue::WebPreferences* prefs) OVERRIDE; | 218 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 217 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 219 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 218 const std::string& key, | 220 const std::string& key, |
| 219 const std::string& value) OVERRIDE; | 221 const std::string& value) OVERRIDE; |
| 220 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; | 222 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 // Cached version of the locale so we can return the locale on the I/O | 267 // Cached version of the locale so we can return the locale on the I/O |
| 266 // thread. | 268 // thread. |
| 267 std::string io_thread_application_locale_; | 269 std::string io_thread_application_locale_; |
| 268 | 270 |
| 269 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 271 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 270 }; | 272 }; |
| 271 | 273 |
| 272 } // namespace chrome | 274 } // namespace chrome |
| 273 | 275 |
| 274 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 276 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |