| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 virtual bool AllowPepperSocketAPI( | 255 virtual bool AllowPepperSocketAPI( |
| 256 content::BrowserContext* browser_context, | 256 content::BrowserContext* browser_context, |
| 257 const GURL& url, | 257 const GURL& url, |
| 258 bool private_api, | 258 bool private_api, |
| 259 const content::SocketPermissionRequest* params) OVERRIDE; | 259 const content::SocketPermissionRequest* params) OVERRIDE; |
| 260 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 260 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
| 261 content::WebContents* web_contents) OVERRIDE; | 261 content::WebContents* web_contents) OVERRIDE; |
| 262 virtual void GetAdditionalAllowedSchemesForFileSystem( | 262 virtual void GetAdditionalAllowedSchemesForFileSystem( |
| 263 std::vector<std::string>* additional_schemes) OVERRIDE; | 263 std::vector<std::string>* additional_schemes) OVERRIDE; |
| 264 virtual void GetURLRequestAutoMountHandlers( | 264 virtual void GetURLRequestAutoMountHandlers( |
| 265 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; | 265 std::vector<storage::URLRequestAutoMountHandler>* handlers) OVERRIDE; |
| 266 virtual void GetAdditionalFileSystemBackends( | 266 virtual void GetAdditionalFileSystemBackends( |
| 267 content::BrowserContext* browser_context, | 267 content::BrowserContext* browser_context, |
| 268 const base::FilePath& storage_partition_path, | 268 const base::FilePath& storage_partition_path, |
| 269 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; | 269 ScopedVector<storage::FileSystemBackend>* additional_backends) OVERRIDE; |
| 270 virtual content::DevToolsManagerDelegate* | 270 virtual content::DevToolsManagerDelegate* |
| 271 GetDevToolsManagerDelegate() OVERRIDE; | 271 GetDevToolsManagerDelegate() OVERRIDE; |
| 272 virtual bool IsPluginAllowedToCallRequestOSFileHandle( | 272 virtual bool IsPluginAllowedToCallRequestOSFileHandle( |
| 273 content::BrowserContext* browser_context, | 273 content::BrowserContext* browser_context, |
| 274 const GURL& url) OVERRIDE; | 274 const GURL& url) OVERRIDE; |
| 275 virtual bool IsPluginAllowedToUseDevChannelAPIs( | 275 virtual bool IsPluginAllowedToUseDevChannelAPIs( |
| 276 content::BrowserContext* browser_context, | 276 content::BrowserContext* browser_context, |
| 277 const GURL& url) OVERRIDE; | 277 const GURL& url) OVERRIDE; |
| 278 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( | 278 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( |
| 279 int render_process_id) OVERRIDE; | 279 int render_process_id) OVERRIDE; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 345 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 346 | 346 |
| 347 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 347 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 348 | 348 |
| 349 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 349 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 350 }; | 350 }; |
| 351 | 351 |
| 352 } // namespace chrome | 352 } // namespace chrome |
| 353 | 353 |
| 354 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 354 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |