| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 const GURL& site_url) OVERRIDE; | 247 const GURL& site_url) OVERRIDE; |
| 248 virtual bool AllowPepperSocketAPI( | 248 virtual bool AllowPepperSocketAPI( |
| 249 content::BrowserContext* browser_context, | 249 content::BrowserContext* browser_context, |
| 250 const GURL& url, | 250 const GURL& url, |
| 251 bool private_api, | 251 bool private_api, |
| 252 const content::SocketPermissionRequest* params) OVERRIDE; | 252 const content::SocketPermissionRequest* params) OVERRIDE; |
| 253 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 253 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
| 254 content::WebContents* web_contents) OVERRIDE; | 254 content::WebContents* web_contents) OVERRIDE; |
| 255 virtual void GetAdditionalAllowedSchemesForFileSystem( | 255 virtual void GetAdditionalAllowedSchemesForFileSystem( |
| 256 std::vector<std::string>* additional_schemes) OVERRIDE; | 256 std::vector<std::string>* additional_schemes) OVERRIDE; |
| 257 virtual void GetURLRequestAutoMountHandlers( |
| 258 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; |
| 257 virtual void GetAdditionalFileSystemBackends( | 259 virtual void GetAdditionalFileSystemBackends( |
| 258 content::BrowserContext* browser_context, | 260 content::BrowserContext* browser_context, |
| 259 const base::FilePath& storage_partition_path, | 261 const base::FilePath& storage_partition_path, |
| 260 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; | 262 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; |
| 261 | 263 |
| 262 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 264 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 263 virtual void GetAdditionalMappedFilesForChildProcess( | 265 virtual void GetAdditionalMappedFilesForChildProcess( |
| 264 const CommandLine& command_line, | 266 const CommandLine& command_line, |
| 265 int child_process_id, | 267 int child_process_id, |
| 266 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; | 268 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 296 permissions_policy_delegate_; | 298 permissions_policy_delegate_; |
| 297 | 299 |
| 298 friend class DisableWebRtcEncryptionFlagTest; | 300 friend class DisableWebRtcEncryptionFlagTest; |
| 299 | 301 |
| 300 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 302 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 301 }; | 303 }; |
| 302 | 304 |
| 303 } // namespace chrome | 305 } // namespace chrome |
| 304 | 306 |
| 305 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 307 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |