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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 virtual bool AllowPepperSocketAPI( | 234 virtual bool AllowPepperSocketAPI( |
235 content::BrowserContext* browser_context, | 235 content::BrowserContext* browser_context, |
236 const GURL& url, | 236 const GURL& url, |
237 bool private_api, | 237 bool private_api, |
238 const content::SocketPermissionRequest& params) OVERRIDE; | 238 const content::SocketPermissionRequest& params) OVERRIDE; |
239 virtual base::FilePath GetHyphenDictionaryDirectory() OVERRIDE; | 239 virtual base::FilePath GetHyphenDictionaryDirectory() OVERRIDE; |
240 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 240 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
241 content::WebContents* web_contents) OVERRIDE; | 241 content::WebContents* web_contents) OVERRIDE; |
242 virtual void GetAdditionalAllowedSchemesForFileSystem( | 242 virtual void GetAdditionalAllowedSchemesForFileSystem( |
243 std::vector<std::string>* additional_schemes) OVERRIDE; | 243 std::vector<std::string>* additional_schemes) OVERRIDE; |
244 virtual void GetAdditionalFileSystemMountPointProviders( | 244 virtual void GetAdditionalFileSystemBackends( |
245 const base::FilePath& storage_partition_path, | 245 const base::FilePath& storage_partition_path, |
246 quota::SpecialStoragePolicy* special_storage_policy, | 246 quota::SpecialStoragePolicy* special_storage_policy, |
247 fileapi::ExternalMountPoints* external_mount_points, | 247 fileapi::ExternalMountPoints* external_mount_points, |
248 ScopedVector<fileapi::FileSystemMountPointProvider>* | 248 ScopedVector<fileapi::FileSystemBackend>* |
hidehiko
2013/07/04 08:21:12
nit: Can be fit in a line?
satorux1
2013/07/05 04:47:57
Done.
| |
249 additional_providers) OVERRIDE; | 249 additional_backends) OVERRIDE; |
250 | 250 |
251 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 251 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
252 virtual void GetAdditionalMappedFilesForChildProcess( | 252 virtual void GetAdditionalMappedFilesForChildProcess( |
253 const CommandLine& command_line, | 253 const CommandLine& command_line, |
254 int child_process_id, | 254 int child_process_id, |
255 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; | 255 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; |
256 #endif | 256 #endif |
257 #if defined(OS_WIN) | 257 #if defined(OS_WIN) |
258 virtual const wchar_t* GetResourceDllName() OVERRIDE; | 258 virtual const wchar_t* GetResourceDllName() OVERRIDE; |
259 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, | 259 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, |
(...skipping 12 matching lines...) Expand all Loading... | |
272 #endif | 272 #endif |
273 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 273 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
274 permissions_policy_delegate_; | 274 permissions_policy_delegate_; |
275 | 275 |
276 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 276 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
277 }; | 277 }; |
278 | 278 |
279 } // namespace chrome | 279 } // namespace chrome |
280 | 280 |
281 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 281 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |