| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 const GURL& source_origin, | 184 const GURL& source_origin, |
| 185 WindowContainerType container_type, | 185 WindowContainerType container_type, |
| 186 content::ResourceContext* context, | 186 content::ResourceContext* context, |
| 187 int render_process_id, | 187 int render_process_id, |
| 188 bool* no_javascript_access) OVERRIDE; | 188 bool* no_javascript_access) OVERRIDE; |
| 189 virtual std::string GetWorkerProcessTitle( | 189 virtual std::string GetWorkerProcessTitle( |
| 190 const GURL& url, content::ResourceContext* context) OVERRIDE; | 190 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 191 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 191 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 192 virtual content::SpeechRecognitionManagerDelegate* | 192 virtual content::SpeechRecognitionManagerDelegate* |
| 193 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 193 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 194 virtual scoped_ptr<content::TtsDispatcherHostDelegate> |
| 195 CreateTtsDispatcherHostDelegate() OVERRIDE; |
| 194 virtual net::NetLog* GetNetLog() OVERRIDE; | 196 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 195 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 197 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 196 virtual bool IsFastShutdownPossible() OVERRIDE; | 198 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 197 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 199 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 198 const GURL& url, | 200 const GURL& url, |
| 199 webkit_glue::WebPreferences* prefs) OVERRIDE; | 201 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 200 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 202 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 201 const std::string& key, | 203 const std::string& key, |
| 202 const std::string& value) OVERRIDE; | 204 const std::string& value) OVERRIDE; |
| 203 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; | 205 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 // Cached version of the locale so we can return the locale on the I/O | 250 // Cached version of the locale so we can return the locale on the I/O |
| 249 // thread. | 251 // thread. |
| 250 std::string io_thread_application_locale_; | 252 std::string io_thread_application_locale_; |
| 251 | 253 |
| 252 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 254 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 253 }; | 255 }; |
| 254 | 256 |
| 255 } // namespace chrome | 257 } // namespace chrome |
| 256 | 258 |
| 257 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 259 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |