| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 virtual bool AllowPepperSocketAPI( | 264 virtual bool AllowPepperSocketAPI( |
| 265 content::BrowserContext* browser_context, | 265 content::BrowserContext* browser_context, |
| 266 const GURL& url, | 266 const GURL& url, |
| 267 bool private_api, | 267 bool private_api, |
| 268 const content::SocketPermissionRequest* params) OVERRIDE; | 268 const content::SocketPermissionRequest* params) OVERRIDE; |
| 269 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 269 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
| 270 content::WebContents* web_contents) OVERRIDE; | 270 content::WebContents* web_contents) OVERRIDE; |
| 271 virtual void GetAdditionalAllowedSchemesForFileSystem( | 271 virtual void GetAdditionalAllowedSchemesForFileSystem( |
| 272 std::vector<std::string>* additional_schemes) OVERRIDE; | 272 std::vector<std::string>* additional_schemes) OVERRIDE; |
| 273 virtual void GetURLRequestAutoMountHandlers( | 273 virtual void GetURLRequestAutoMountHandlers( |
| 274 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; | 274 std::vector<storage::URLRequestAutoMountHandler>* handlers) OVERRIDE; |
| 275 virtual void GetAdditionalFileSystemBackends( | 275 virtual void GetAdditionalFileSystemBackends( |
| 276 content::BrowserContext* browser_context, | 276 content::BrowserContext* browser_context, |
| 277 const base::FilePath& storage_partition_path, | 277 const base::FilePath& storage_partition_path, |
| 278 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; | 278 ScopedVector<storage::FileSystemBackend>* additional_backends) OVERRIDE; |
| 279 virtual content::DevToolsManagerDelegate* | 279 virtual content::DevToolsManagerDelegate* |
| 280 GetDevToolsManagerDelegate() OVERRIDE; | 280 GetDevToolsManagerDelegate() OVERRIDE; |
| 281 virtual bool IsPluginAllowedToCallRequestOSFileHandle( | 281 virtual bool IsPluginAllowedToCallRequestOSFileHandle( |
| 282 content::BrowserContext* browser_context, | 282 content::BrowserContext* browser_context, |
| 283 const GURL& url) OVERRIDE; | 283 const GURL& url) OVERRIDE; |
| 284 virtual bool IsPluginAllowedToUseDevChannelAPIs( | 284 virtual bool IsPluginAllowedToUseDevChannelAPIs( |
| 285 content::BrowserContext* browser_context, | 285 content::BrowserContext* browser_context, |
| 286 const GURL& url) OVERRIDE; | 286 const GURL& url) OVERRIDE; |
| 287 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( | 287 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( |
| 288 int render_process_id) OVERRIDE; | 288 int render_process_id) OVERRIDE; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 354 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 355 | 355 |
| 356 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 356 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 357 | 357 |
| 358 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 358 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 359 }; | 359 }; |
| 360 | 360 |
| 361 } // namespace chrome | 361 } // namespace chrome |
| 362 | 362 |
| 363 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 363 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |