| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 const GURL& url, content::ResourceContext* context) OVERRIDE; | 240 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 241 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 241 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 242 virtual content::SpeechRecognitionManagerDelegate* | 242 virtual content::SpeechRecognitionManagerDelegate* |
| 243 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 243 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 244 virtual net::NetLog* GetNetLog() OVERRIDE; | 244 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 245 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 245 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 246 virtual bool IsFastShutdownPossible() OVERRIDE; | 246 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 247 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 247 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 248 const GURL& url, | 248 const GURL& url, |
| 249 content::WebPreferences* prefs) OVERRIDE; | 249 content::WebPreferences* prefs) OVERRIDE; |
| 250 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | |
| 251 const std::string& key, | |
| 252 const std::string& value) OVERRIDE; | |
| 253 virtual void BrowserURLHandlerCreated( | 250 virtual void BrowserURLHandlerCreated( |
| 254 content::BrowserURLHandler* handler) OVERRIDE; | 251 content::BrowserURLHandler* handler) OVERRIDE; |
| 255 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 252 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
| 256 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 253 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
| 257 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 254 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 258 virtual std::string GetDefaultDownloadName() OVERRIDE; | 255 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 259 virtual void DidCreatePpapiPlugin( | 256 virtual void DidCreatePpapiPlugin( |
| 260 content::BrowserPpapiHost* browser_host) OVERRIDE; | 257 content::BrowserPpapiHost* browser_host) OVERRIDE; |
| 261 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 258 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
| 262 int plugin_process_id) OVERRIDE; | 259 int plugin_process_id) OVERRIDE; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 350 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 354 | 351 |
| 355 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 352 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 356 | 353 |
| 357 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 354 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 358 }; | 355 }; |
| 359 | 356 |
| 360 } // namespace chrome | 357 } // namespace chrome |
| 361 | 358 |
| 362 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 359 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |