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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 bool* no_javascript_access) override; | 218 bool* no_javascript_access) override; |
219 void ResourceDispatcherHostCreated() override; | 219 void ResourceDispatcherHostCreated() override; |
220 content::SpeechRecognitionManagerDelegate* | 220 content::SpeechRecognitionManagerDelegate* |
221 CreateSpeechRecognitionManagerDelegate() override; | 221 CreateSpeechRecognitionManagerDelegate() override; |
222 net::NetLog* GetNetLog() override; | 222 net::NetLog* GetNetLog() override; |
223 content::AccessTokenStore* CreateAccessTokenStore() override; | 223 content::AccessTokenStore* CreateAccessTokenStore() override; |
224 bool IsFastShutdownPossible() override; | 224 bool IsFastShutdownPossible() override; |
225 void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 225 void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
226 content::WebPreferences* prefs) override; | 226 content::WebPreferences* prefs) override; |
227 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; | 227 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; |
228 void ClearCache(content::RenderViewHost* rvh) override; | 228 void ClearCache(content::RenderFrameHost* rfh) override; |
229 void ClearCookies(content::RenderViewHost* rvh) override; | 229 void ClearCookies(content::RenderFrameHost* rfh) override; |
230 base::FilePath GetDefaultDownloadDirectory() override; | 230 base::FilePath GetDefaultDownloadDirectory() override; |
231 std::string GetDefaultDownloadName() override; | 231 std::string GetDefaultDownloadName() override; |
232 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override; | 232 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override; |
233 content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 233 content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
234 int plugin_process_id) override; | 234 int plugin_process_id) override; |
235 bool AllowPepperSocketAPI( | 235 bool AllowPepperSocketAPI( |
236 content::BrowserContext* browser_context, | 236 content::BrowserContext* browser_context, |
237 const GURL& url, | 237 const GURL& url, |
238 bool private_api, | 238 bool private_api, |
239 const content::SocketPermissionRequest* params) override; | 239 const content::SocketPermissionRequest* params) override; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 333 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
334 | 334 |
335 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 335 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
336 | 336 |
337 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 337 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
338 }; | 338 }; |
339 | 339 |
340 } // namespace chrome | 340 } // namespace chrome |
341 | 341 |
342 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 342 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |