| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PART_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PART_
H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PART_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PART_
H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "chrome/browser/chrome_content_browser_client_parts.h" | 10 #include "chrome/browser/chrome_content_browser_client_parts.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual void WorkerProcessTerminated(content::SiteInstance* site_instance, | 69 virtual void WorkerProcessTerminated(content::SiteInstance* site_instance, |
| 70 int worker_process_id) OVERRIDE; | 70 int worker_process_id) OVERRIDE; |
| 71 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 71 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 72 const GURL& url, | 72 const GURL& url, |
| 73 content::WebPreferences* web_prefs) OVERRIDE; | 73 content::WebPreferences* web_prefs) OVERRIDE; |
| 74 virtual void BrowserURLHandlerCreated( | 74 virtual void BrowserURLHandlerCreated( |
| 75 content::BrowserURLHandler* handler) OVERRIDE; | 75 content::BrowserURLHandler* handler) OVERRIDE; |
| 76 virtual void GetAdditionalAllowedSchemesForFileSystem( | 76 virtual void GetAdditionalAllowedSchemesForFileSystem( |
| 77 std::vector<std::string>* additional_allowed_schemes) OVERRIDE; | 77 std::vector<std::string>* additional_allowed_schemes) OVERRIDE; |
| 78 virtual void GetURLRequestAutoMountHandlers( | 78 virtual void GetURLRequestAutoMountHandlers( |
| 79 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; | 79 std::vector<storage::URLRequestAutoMountHandler>* handlers) OVERRIDE; |
| 80 virtual void GetAdditionalFileSystemBackends( | 80 virtual void GetAdditionalFileSystemBackends( |
| 81 content::BrowserContext* browser_context, | 81 content::BrowserContext* browser_context, |
| 82 const base::FilePath& storage_partition_path, | 82 const base::FilePath& storage_partition_path, |
| 83 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; | 83 ScopedVector<storage::FileSystemBackend>* additional_backends) OVERRIDE; |
| 84 virtual void AppendExtraRendererCommandLineSwitches( | 84 virtual void AppendExtraRendererCommandLineSwitches( |
| 85 base::CommandLine* command_line, | 85 base::CommandLine* command_line, |
| 86 content::RenderProcessHost* process, | 86 content::RenderProcessHost* process, |
| 87 Profile* profile) OVERRIDE; | 87 Profile* profile) OVERRIDE; |
| 88 | 88 |
| 89 scoped_ptr<BrowserPermissionsPolicyDelegate> permissions_policy_delegate_; | 89 scoped_ptr<BrowserPermissionsPolicyDelegate> permissions_policy_delegate_; |
| 90 | 90 |
| 91 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart); | 91 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace extensions | 94 } // namespace extensions |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA
RT_H_ | 96 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA
RT_H_ |
| 97 | 97 |
| OLD | NEW |