summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-18 02:19:39 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-18 02:19:39 +0000
commit7862dc229e31682d906c9b1cd4d3a7c2a81a6691 (patch)
treed5570111cf9ff46fca02487c02b663834fa9c94e /chrome
parent836832603ab41fe89b147152eab34c520867c7b8 (diff)
downloadchromium_src-7862dc229e31682d906c9b1cd4d3a7c2a81a6691.zip
chromium_src-7862dc229e31682d906c9b1cd4d3a7c2a81a6691.tar.gz
chromium_src-7862dc229e31682d906c9b1cd4d3a7c2a81a6691.tar.bz2
Remove file_path.h from testing_profile.h, it's already included in file_util.h.
This is really a dummy change to kick the buildbot. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21037 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/test/testing_profile.h6
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;