Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: chrome/browser/extensions/chrome_content_browser_client_extensions_part.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 virtual void SiteInstanceDeleting( 63 virtual void SiteInstanceDeleting(
64 content::SiteInstance* site_instance) OVERRIDE; 64 content::SiteInstance* site_instance) OVERRIDE;
65 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, 65 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh,
66 const GURL& url, 66 const GURL& url,
67 content::WebPreferences* web_prefs) OVERRIDE; 67 content::WebPreferences* web_prefs) OVERRIDE;
68 virtual void BrowserURLHandlerCreated( 68 virtual void BrowserURLHandlerCreated(
69 content::BrowserURLHandler* handler) OVERRIDE; 69 content::BrowserURLHandler* handler) OVERRIDE;
70 virtual void GetAdditionalAllowedSchemesForFileSystem( 70 virtual void GetAdditionalAllowedSchemesForFileSystem(
71 std::vector<std::string>* additional_allowed_schemes) OVERRIDE; 71 std::vector<std::string>* additional_allowed_schemes) OVERRIDE;
72 virtual void GetURLRequestAutoMountHandlers( 72 virtual void GetURLRequestAutoMountHandlers(
73 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; 73 std::vector<storage::URLRequestAutoMountHandler>* handlers) OVERRIDE;
74 virtual void GetAdditionalFileSystemBackends( 74 virtual void GetAdditionalFileSystemBackends(
75 content::BrowserContext* browser_context, 75 content::BrowserContext* browser_context,
76 const base::FilePath& storage_partition_path, 76 const base::FilePath& storage_partition_path,
77 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; 77 ScopedVector<storage::FileSystemBackend>* additional_backends) OVERRIDE;
78 virtual void AppendExtraRendererCommandLineSwitches( 78 virtual void AppendExtraRendererCommandLineSwitches(
79 base::CommandLine* command_line, 79 base::CommandLine* command_line,
80 content::RenderProcessHost* process, 80 content::RenderProcessHost* process,
81 Profile* profile) OVERRIDE; 81 Profile* profile) OVERRIDE;
82 82
83 scoped_ptr<BrowserPermissionsPolicyDelegate> permissions_policy_delegate_; 83 scoped_ptr<BrowserPermissionsPolicyDelegate> permissions_policy_delegate_;
84 84
85 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart); 85 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientExtensionsPart);
86 }; 86 };
87 87
88 } // namespace extensions 88 } // namespace extensions
89 89
90 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA RT_H_ 90 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_CONTENT_BROWSER_CLIENT_EXTENSIONS_PA RT_H_
91 91
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698