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

Unified Diff: chrome/browser/history/top_sites_backend.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « chrome/browser/history/top_sites.h ('k') | chrome/browser/history/top_sites_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/top_sites_backend.h
diff --git a/chrome/browser/history/top_sites_backend.h b/chrome/browser/history/top_sites_backend.h
index 163af2cea5707cb2d5fff7e83e43b5aae3878b88..50282864a83b4854c48d4bf7204b653bf3da8b3a 100644
--- a/chrome/browser/history/top_sites_backend.h
+++ b/chrome/browser/history/top_sites_backend.h
@@ -12,7 +12,10 @@
#include "chrome/browser/history/history_types.h"
class CancelableTaskTracker;
+
+namespace base {
class FilePath;
+}
namespace history {
@@ -31,7 +34,7 @@ class TopSitesBackend : public base::RefCountedThreadSafe<TopSitesBackend> {
TopSitesBackend();
- void Init(const FilePath& path);
+ void Init(const base::FilePath& path);
// Schedules the db to be shutdown.
void Shutdown();
@@ -64,7 +67,7 @@ class TopSitesBackend : public base::RefCountedThreadSafe<TopSitesBackend> {
virtual ~TopSitesBackend();
// Invokes Init on the db_.
- void InitDBOnDBThread(const FilePath& path);
+ void InitDBOnDBThread(const base::FilePath& path);
// Shuts down the db.
void ShutdownDBOnDBThread();
@@ -83,9 +86,9 @@ class TopSitesBackend : public base::RefCountedThreadSafe<TopSitesBackend> {
const Images& thumbnail);
// Resets the database.
- void ResetDatabaseOnDBThread(const FilePath& file_path);
+ void ResetDatabaseOnDBThread(const base::FilePath& file_path);
- FilePath db_path_;
+ base::FilePath db_path_;
scoped_ptr<TopSitesDatabase> db_;
« no previous file with comments | « chrome/browser/history/top_sites.h ('k') | chrome/browser/history/top_sites_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698