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

Unified Diff: content/browser/browser_context.cc

Issue 12213066: Use base namespace for FilePath in content/browser (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
Index: content/browser/browser_context.cc
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
index 1b72aec2ba83165c923b9828515c071735b30201..3e3f57087981965aabc4009eedbd0b9f27ba6fb7 100644
--- a/content/browser/browser_context.cc
+++ b/content/browser/browser_context.cc
@@ -106,7 +106,7 @@ void BrowserContext::AsyncObliterateStoragePartition(
// static
void BrowserContext::GarbageCollectStoragePartitions(
BrowserContext* browser_context,
- scoped_ptr<base::hash_set<FilePath> > active_paths,
+ scoped_ptr<base::hash_set<base::FilePath> > active_paths,
const base::Closure& done) {
GetStoragePartitionMap(browser_context)->GarbageCollect(
active_paths.Pass(), done);
@@ -151,7 +151,7 @@ fileapi::ExternalMountPoints* BrowserContext::GetMountPoints(
mount_points));
// Add Downloads mount point.
- FilePath home_path;
+ base::FilePath home_path;
if (PathService::Get(base::DIR_HOME, &home_path)) {
mount_points->RegisterFileSystem(
"Downloads",
« no previous file with comments | « content/browser/browser_child_process_host_impl.cc ('k') | content/browser/browser_plugin/browser_plugin_host_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698