| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 WebPreferences* prefs) OVERRIDE; | 224 WebPreferences* prefs) OVERRIDE; |
| 225 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 225 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 226 const std::string& key, | 226 const std::string& key, |
| 227 const std::string& value) OVERRIDE; | 227 const std::string& value) OVERRIDE; |
| 228 virtual void BrowserURLHandlerCreated( | 228 virtual void BrowserURLHandlerCreated( |
| 229 content::BrowserURLHandler* handler) OVERRIDE; | 229 content::BrowserURLHandler* handler) OVERRIDE; |
| 230 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 230 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
| 231 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 231 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
| 232 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 232 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 233 virtual std::string GetDefaultDownloadName() OVERRIDE; | 233 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 234 virtual std::string GetDeviceIdSalt(content::ResourceContext* rc) OVERRIDE; |
| 234 virtual void DidCreatePpapiPlugin( | 235 virtual void DidCreatePpapiPlugin( |
| 235 content::BrowserPpapiHost* browser_host) OVERRIDE; | 236 content::BrowserPpapiHost* browser_host) OVERRIDE; |
| 236 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 237 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
| 237 int plugin_process_id) OVERRIDE; | 238 int plugin_process_id) OVERRIDE; |
| 238 virtual bool SupportsBrowserPlugin(content::BrowserContext* browser_context, | 239 virtual bool SupportsBrowserPlugin(content::BrowserContext* browser_context, |
| 239 const GURL& site_url) OVERRIDE; | 240 const GURL& site_url) OVERRIDE; |
| 240 virtual bool AllowPepperSocketAPI( | 241 virtual bool AllowPepperSocketAPI( |
| 241 content::BrowserContext* browser_context, | 242 content::BrowserContext* browser_context, |
| 242 const GURL& url, | 243 const GURL& url, |
| 243 bool private_api, | 244 bool private_api, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 #endif | 282 #endif |
| 282 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 283 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
| 283 permissions_policy_delegate_; | 284 permissions_policy_delegate_; |
| 284 | 285 |
| 285 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 286 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 286 }; | 287 }; |
| 287 | 288 |
| 288 } // namespace chrome | 289 } // namespace chrome |
| 289 | 290 |
| 290 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 291 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |