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

Unified Diff: android_webview/browser/aw_browser_context.h

Issue 12211108: Rename FilePath -> base::FilePath in various toplevel directories (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_browser_context.h
diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h
index b7f1b37da72e20a582d2c8dad9f165dbff0d1517..4d0bd661955bb3ebbc812c9b68d5dc97263639e1 100644
--- a/android_webview/browser/aw_browser_context.h
+++ b/android_webview/browser/aw_browser_context.h
@@ -40,7 +40,7 @@ class AwBrowserContext : public content::BrowserContext,
public:
AwBrowserContext(
- const FilePath path,
+ const base::FilePath path,
GeolocationPermissionFactoryFn* geolocation_permission_factory);
virtual ~AwBrowserContext();
@@ -70,7 +70,7 @@ class AwBrowserContext : public content::BrowserContext,
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
chrome_devtools_protocol_handler);
net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
- const FilePath& partition_path,
+ const base::FilePath& partition_path,
bool in_memory,
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
blob_protocol_handler,
@@ -84,7 +84,7 @@ class AwBrowserContext : public content::BrowserContext,
chrome_devtools_protocol_handler);
// content::BrowserContext implementation.
- virtual FilePath GetPath() OVERRIDE;
+ virtual base::FilePath GetPath() OVERRIDE;
virtual bool IsOffTheRecord() const OVERRIDE;
virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
@@ -94,7 +94,7 @@ class AwBrowserContext : public content::BrowserContext,
int renderer_child_id) OVERRIDE;
virtual net::URLRequestContextGetter*
GetMediaRequestContextForStoragePartition(
- const FilePath& partition_path, bool in_memory) OVERRIDE;
+ const base::FilePath& partition_path, bool in_memory) OVERRIDE;
virtual content::ResourceContext* GetResourceContext() OVERRIDE;
virtual content::DownloadManagerDelegate*
GetDownloadManagerDelegate() OVERRIDE;
@@ -110,7 +110,7 @@ class AwBrowserContext : public content::BrowserContext,
private:
// The file path where data for this context is persisted.
- FilePath context_storage_path_;
+ base::FilePath context_storage_path_;
scoped_refptr<AwURLRequestContextGetter> url_request_context_getter_;
GeolocationPermissionFactoryFn* geolocation_permission_factory_;
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698