| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 79 void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 80 content::WebPreferences* web_prefs) override; | 80 content::WebPreferences* web_prefs) override; |
| 81 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; | 81 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; |
| 82 void GetAdditionalAllowedSchemesForFileSystem( | 82 void GetAdditionalAllowedSchemesForFileSystem( |
| 83 std::vector<std::string>* additional_allowed_schemes) override; | 83 std::vector<std::string>* additional_allowed_schemes) override; |
| 84 void GetURLRequestAutoMountHandlers( | 84 void GetURLRequestAutoMountHandlers( |
| 85 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; | 85 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; |
| 86 void GetAdditionalFileSystemBackends( | 86 void GetAdditionalFileSystemBackends( |
| 87 content::BrowserContext* browser_context, | 87 content::BrowserContext* browser_context, |
| 88 const base::FilePath& storage_partition_path, | 88 const base::FilePath& storage_partition_path, |
| 89 ScopedVector<storage::FileSystemBackend>* additional_backends) override; | 89 std::vector<std::unique_ptr<storage::FileSystemBackend>>* |
| 90 additional_backends) override; |
| 90 void AppendExtraRendererCommandLineSwitches( | 91 void AppendExtraRendererCommandLineSwitches( |
| 91 base::CommandLine* command_line, | 92 base::CommandLine* command_line, |
| 92 content::RenderProcessHost* process, | 93 content::RenderProcessHost* process, |
| 93 Profile* profile) override; | 94 Profile* profile) override; |
| 94 void ResourceDispatcherHostCreated() override; | 95 void ResourceDispatcherHostCreated() override; |
| 95 | 96 |
| 96 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart); | 97 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart); |
| 97 }; | 98 }; |
| 98 | 99 |
| 99 } // namespace extensions | 100 } // namespace extensions |
| 100 | 101 |
| 101 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA
RT_H_ | 102 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA
RT_H_ |
| 102 | 103 |
| OLD | NEW |