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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( | 252 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
253 content::WebContents* web_contents) OVERRIDE; | 253 content::WebContents* web_contents) OVERRIDE; |
254 virtual void GetAdditionalAllowedSchemesForFileSystem( | 254 virtual void GetAdditionalAllowedSchemesForFileSystem( |
255 std::vector<std::string>* additional_schemes) OVERRIDE; | 255 std::vector<std::string>* additional_schemes) OVERRIDE; |
256 virtual void GetURLRequestAutoMountHandlers( | 256 virtual void GetURLRequestAutoMountHandlers( |
257 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; | 257 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; |
258 virtual void GetAdditionalFileSystemBackends( | 258 virtual void GetAdditionalFileSystemBackends( |
259 content::BrowserContext* browser_context, | 259 content::BrowserContext* browser_context, |
260 const base::FilePath& storage_partition_path, | 260 const base::FilePath& storage_partition_path, |
261 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; | 261 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; |
| 262 virtual content::DevToolsManagerDelegate* |
| 263 GetDevToolsManagerDelegate() OVERRIDE; |
262 | 264 |
263 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 265 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
264 virtual void GetAdditionalMappedFilesForChildProcess( | 266 virtual void GetAdditionalMappedFilesForChildProcess( |
265 const base::CommandLine& command_line, | 267 const base::CommandLine& command_line, |
266 int child_process_id, | 268 int child_process_id, |
267 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; | 269 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; |
268 #endif | 270 #endif |
269 #if defined(OS_WIN) | 271 #if defined(OS_WIN) |
270 virtual const wchar_t* GetResourceDllName() OVERRIDE; | 272 virtual const wchar_t* GetResourceDllName() OVERRIDE; |
271 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, | 273 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, |
(...skipping 25 matching lines...) Expand all Loading... |
297 permissions_policy_delegate_; | 299 permissions_policy_delegate_; |
298 | 300 |
299 friend class DisableWebRtcEncryptionFlagTest; | 301 friend class DisableWebRtcEncryptionFlagTest; |
300 | 302 |
301 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 303 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
302 }; | 304 }; |
303 | 305 |
304 } // namespace chrome | 306 } // namespace chrome |
305 | 307 |
306 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 308 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |