Use base namespace for FilePath in content/browser

Review URL: https://codereview.chromium.org/12213066

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181349 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
index 46daacd..6de28ed2 100644
--- a/content/browser/storage_partition_impl.h
+++ b/content/browser/storage_partition_impl.h
@@ -20,7 +20,7 @@
   virtual ~StoragePartitionImpl();
 
   // StoragePartition interface.
-  virtual FilePath GetPath() OVERRIDE;
+  virtual base::FilePath GetPath() OVERRIDE;
   virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
   virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE;
   virtual quota::QuotaManager* GetQuotaManager() OVERRIDE;
@@ -45,10 +45,10 @@
   // on to disk.
   static StoragePartitionImpl* Create(BrowserContext* context,
                                       bool in_memory,
-                                      const FilePath& profile_path);
+                                      const base::FilePath& profile_path);
 
   StoragePartitionImpl(
-      const FilePath& partition_path,
+      const base::FilePath& partition_path,
       quota::QuotaManager* quota_manager,
       ChromeAppCacheService* appcache_service,
       fileapi::FileSystemContext* filesystem_context,
@@ -72,7 +72,7 @@
   void SetMediaURLRequestContext(
       net::URLRequestContextGetter* media_url_request_context);
 
-  FilePath partition_path_;
+  base::FilePath partition_path_;
   scoped_refptr<net::URLRequestContextGetter> url_request_context_;
   scoped_refptr<net::URLRequestContextGetter> media_url_request_context_;
   scoped_refptr<quota::QuotaManager> quota_manager_;