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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 (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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 virtual bool AllowPepperSocketAPI( 264 virtual bool AllowPepperSocketAPI(
265 content::BrowserContext* browser_context, 265 content::BrowserContext* browser_context,
266 const GURL& url, 266 const GURL& url,
267 bool private_api, 267 bool private_api,
268 const content::SocketPermissionRequest* params) OVERRIDE; 268 const content::SocketPermissionRequest* params) OVERRIDE;
269 virtual ui::SelectFilePolicy* CreateSelectFilePolicy( 269 virtual ui::SelectFilePolicy* CreateSelectFilePolicy(
270 content::WebContents* web_contents) OVERRIDE; 270 content::WebContents* web_contents) OVERRIDE;
271 virtual void GetAdditionalAllowedSchemesForFileSystem( 271 virtual void GetAdditionalAllowedSchemesForFileSystem(
272 std::vector<std::string>* additional_schemes) OVERRIDE; 272 std::vector<std::string>* additional_schemes) OVERRIDE;
273 virtual void GetURLRequestAutoMountHandlers( 273 virtual void GetURLRequestAutoMountHandlers(
274 std::vector<fileapi::URLRequestAutoMountHandler>* handlers) OVERRIDE; 274 std::vector<storage::URLRequestAutoMountHandler>* handlers) OVERRIDE;
275 virtual void GetAdditionalFileSystemBackends( 275 virtual void GetAdditionalFileSystemBackends(
276 content::BrowserContext* browser_context, 276 content::BrowserContext* browser_context,
277 const base::FilePath& storage_partition_path, 277 const base::FilePath& storage_partition_path,
278 ScopedVector<fileapi::FileSystemBackend>* additional_backends) OVERRIDE; 278 ScopedVector<storage::FileSystemBackend>* additional_backends) OVERRIDE;
279 virtual content::DevToolsManagerDelegate* 279 virtual content::DevToolsManagerDelegate*
280 GetDevToolsManagerDelegate() OVERRIDE; 280 GetDevToolsManagerDelegate() OVERRIDE;
281 virtual bool IsPluginAllowedToCallRequestOSFileHandle( 281 virtual bool IsPluginAllowedToCallRequestOSFileHandle(
282 content::BrowserContext* browser_context, 282 content::BrowserContext* browser_context,
283 const GURL& url) OVERRIDE; 283 const GURL& url) OVERRIDE;
284 virtual bool IsPluginAllowedToUseDevChannelAPIs( 284 virtual bool IsPluginAllowedToUseDevChannelAPIs(
285 content::BrowserContext* browser_context, 285 content::BrowserContext* browser_context,
286 const GURL& url) OVERRIDE; 286 const GURL& url) OVERRIDE;
287 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( 287 virtual net::CookieStore* OverrideCookieStoreForRenderProcess(
288 int render_process_id) OVERRIDE; 288 int render_process_id) OVERRIDE;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 354 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
355 355
356 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 356 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
357 357
358 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 358 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
359 }; 359 };
360 360
361 } // namespace chrome 361 } // namespace chrome
362 362
363 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 363 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data/mock_browsing_data_file_system_helper.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698