summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorrlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 07:48:15 +0000
committerrlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 07:48:15 +0000
commit13169abc0aaffd173439844c9457c2e2eb96ccb2 (patch)
tree7747d2a9c8f8f5a1cc69de475ee91c7cd1625cd4 /chrome/test
parent1cbbad5bac0e5e5e097b417152ecedaa206e8371 (diff)
downloadchromium_src-13169abc0aaffd173439844c9457c2e2eb96ccb2.zip
chromium_src-13169abc0aaffd173439844c9457c2e2eb96ccb2.tar.gz
chromium_src-13169abc0aaffd173439844c9457c2e2eb96ccb2.tar.bz2
Convert UserStyleSheetWatcher to a ProfileKeyedService.
BUG=121004 TEST=no new ones, passes existing Review URL: http://codereview.chromium.org/9969037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/base/testing_profile.cc4
-rw-r--r--chrome/test/base/testing_profile.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
index 385b0fe..99b3d6f 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -591,10 +591,6 @@ net::SSLConfigService* TestingProfile::GetSSLConfigService() {
return NULL;
}
-UserStyleSheetWatcher* TestingProfile::GetUserStyleSheetWatcher() {
- return NULL;
-}
-
net::URLRequestContextGetter* TestingProfile::GetRequestContextForIsolatedApp(
const std::string& app_id) {
// We don't test isolated app storage here yet, so returning the same dummy
diff --git a/chrome/test/base/testing_profile.h b/chrome/test/base/testing_profile.h
index 1214218..f9ff29e 100644
--- a/chrome/test/base/testing_profile.h
+++ b/chrome/test/base/testing_profile.h
@@ -203,7 +203,6 @@ class TestingProfile : public Profile {
virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
const std::string& app_id) OVERRIDE;
virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
- virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE;
virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
virtual std::wstring GetName();
virtual void SetName(const std::wstring& name) {}