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

Unified Diff: android_webview/browser/aw_browser_context.cc

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 | « android_webview/browser/aw_browser_context.h ('k') | android_webview/browser/aw_browser_main_parts.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.cc
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc
index 8043adc402bdc4330aa746613c96e605191f4934..ccef830bd99eb32219a7afccf89615c2d2b96373 100644
--- a/android_webview/browser/aw_browser_context.cc
+++ b/android_webview/browser/aw_browser_context.cc
@@ -41,7 +41,7 @@ class AwResourceContext : public content::ResourceContext {
} // namespace
AwBrowserContext::AwBrowserContext(
- const FilePath path,
+ const base::FilePath path,
GeolocationPermissionFactoryFn* geolocation_permission_factory)
: context_storage_path_(path),
geolocation_permission_factory_(geolocation_permission_factory) {
@@ -94,7 +94,7 @@ net::URLRequestContextGetter* AwBrowserContext::CreateRequestContext(
net::URLRequestContextGetter*
AwBrowserContext::CreateRequestContextForStoragePartition(
- const FilePath& partition_path,
+ const base::FilePath& partition_path,
bool in_memory,
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
blob_protocol_handler,
@@ -110,7 +110,7 @@ AwBrowserContext::CreateRequestContextForStoragePartition(
return url_request_context_getter_.get();
}
-FilePath AwBrowserContext::GetPath() {
+base::FilePath AwBrowserContext::GetPath() {
return context_storage_path_;
}
@@ -141,7 +141,7 @@ AwBrowserContext::GetMediaRequestContextForRenderProcess(
net::URLRequestContextGetter*
AwBrowserContext::GetMediaRequestContextForStoragePartition(
- const FilePath& partition_path,
+ const base::FilePath& partition_path,
bool in_memory) {
return GetRequestContext();
}
« no previous file with comments | « android_webview/browser/aw_browser_context.h ('k') | android_webview/browser/aw_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698