| 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_;
|
|
|
|
|