| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 const GURL& url, | 230 const GURL& url, |
| 231 bool private_api, | 231 bool private_api, |
| 232 const content::SocketPermissionRequest& params) OVERRIDE; | 232 const content::SocketPermissionRequest& params) OVERRIDE; |
| 233 virtual base::FilePath GetHyphenDictionaryDirectory() OVERRIDE; | 233 virtual base::FilePath GetHyphenDictionaryDirectory() OVERRIDE; |
| 234 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 234 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
| 235 content::WebContents* web_contents) OVERRIDE; | 235 content::WebContents* web_contents) OVERRIDE; |
| 236 virtual void GetAdditionalAllowedSchemesForFileSystem( | 236 virtual void GetAdditionalAllowedSchemesForFileSystem( |
| 237 std::vector<std::string>* additional_schemes) OVERRIDE; | 237 std::vector<std::string>* additional_schemes) OVERRIDE; |
| 238 virtual void GetAdditionalFileSystemMountPointProviders( | 238 virtual void GetAdditionalFileSystemMountPointProviders( |
| 239 const base::FilePath& storage_partition_path, | 239 const base::FilePath& storage_partition_path, |
| 240 quota::SpecialStoragePolicy* special_storage_policy, |
| 241 fileapi::ExternalMountPoints* external_mount_points, |
| 240 ScopedVector<fileapi::FileSystemMountPointProvider>* | 242 ScopedVector<fileapi::FileSystemMountPointProvider>* |
| 241 additional_providers) OVERRIDE; | 243 additional_providers) OVERRIDE; |
| 242 | 244 |
| 243 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 245 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 244 virtual void GetAdditionalMappedFilesForChildProcess( | 246 virtual void GetAdditionalMappedFilesForChildProcess( |
| 245 const CommandLine& command_line, | 247 const CommandLine& command_line, |
| 246 int child_process_id, | 248 int child_process_id, |
| 247 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; | 249 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; |
| 248 #endif | 250 #endif |
| 249 #if defined(OS_WIN) | 251 #if defined(OS_WIN) |
| (...skipping 14 matching lines...) Expand all Loading... |
| 264 #endif | 266 #endif |
| 265 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 267 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
| 266 permissions_policy_delegate_; | 268 permissions_policy_delegate_; |
| 267 | 269 |
| 268 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 270 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 269 }; | 271 }; |
| 270 | 272 |
| 271 } // namespace chrome | 273 } // namespace chrome |
| 272 | 274 |
| 273 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 275 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |