| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 bool user_gesture, | 215 bool user_gesture, |
| 216 bool opener_suppressed, | 216 bool opener_suppressed, |
| 217 bool* no_javascript_access) override; | 217 bool* no_javascript_access) override; |
| 218 void ResourceDispatcherHostCreated() override; | 218 void ResourceDispatcherHostCreated() override; |
| 219 content::SpeechRecognitionManagerDelegate* | 219 content::SpeechRecognitionManagerDelegate* |
| 220 CreateSpeechRecognitionManagerDelegate() override; | 220 CreateSpeechRecognitionManagerDelegate() override; |
| 221 net::NetLog* GetNetLog() override; | 221 net::NetLog* GetNetLog() override; |
| 222 void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 222 void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 223 content::WebPreferences* prefs) override; | 223 content::WebPreferences* prefs) override; |
| 224 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; | 224 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; |
| 225 void ClearCache(content::RenderFrameHost* rfh) override; | |
| 226 void ClearSiteData(content::BrowserContext* browser_context, | 225 void ClearSiteData(content::BrowserContext* browser_context, |
| 227 const url::Origin& origin, | 226 const url::Origin& origin, |
| 228 bool remove_cookies, | 227 bool remove_cookies, |
| 229 bool remove_storage, | 228 bool remove_storage, |
| 230 bool remove_cache, | 229 bool remove_cache, |
| 231 const base::Closure& callback) override; | 230 const base::Closure& callback) override; |
| 232 base::FilePath GetDefaultDownloadDirectory() override; | 231 base::FilePath GetDefaultDownloadDirectory() override; |
| 233 std::string GetDefaultDownloadName() override; | 232 std::string GetDefaultDownloadName() override; |
| 234 base::FilePath GetShaderDiskCacheDirectory() override; | 233 base::FilePath GetShaderDiskCacheDirectory() override; |
| 235 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override; | 234 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 385 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 387 | 386 |
| 388 service_manager::BinderRegistry gpu_binder_registry_; | 387 service_manager::BinderRegistry gpu_binder_registry_; |
| 389 | 388 |
| 390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 389 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 391 | 390 |
| 392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 391 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 393 }; | 392 }; |
| 394 | 393 |
| 395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 394 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |