diff options
-rw-r--r-- | chrome/test/testing_profile.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index b360ac2..9341e40 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -6,9 +6,8 @@ #define CHROME_TEST_TESTING_PROFILE_H_ #include "base/base_paths.h" -#include "base/file_path.h" -#include "base/path_service.h" #include "base/file_util.h" +#include "base/path_service.h" #include "chrome/browser/bookmarks/bookmark_model.h" #include "chrome/browser/browser_prefs.h" #include "chrome/browser/browser_theme_provider.h" @@ -59,6 +58,9 @@ class TestingProfile : public Profile { virtual FilePath GetPath() { return path_; } + virtual FilePath GetCachePath() { + return path_; + } // Sets whether we're off the record. Default is false. void set_off_the_record(bool off_the_record) { off_the_record_ = off_the_record; |