diff options
author | mnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 12:32:16 +0000 |
---|---|---|
committer | mnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 12:32:16 +0000 |
commit | 87cc213e32c17d6cd593be45eb40fee4612e7b15 (patch) | |
tree | 203415f99c8d5c1ea0e089da117eab677a1848cb /chrome/browser/notifications | |
parent | 32af00b4ee05844f9699599c1762b2aeb6674bce (diff) | |
download | chromium_src-87cc213e32c17d6cd593be45eb40fee4612e7b15.zip chromium_src-87cc213e32c17d6cd593be45eb40fee4612e7b15.tar.gz chromium_src-87cc213e32c17d6cd593be45eb40fee4612e7b15.tar.bz2 |
Reduce the include footprint of pref_service.h
This removes the pref_value_store.h header from the pref_service.h
include list and cleans up any users that were getting the MessageLoop
and BrowserThread definitions indirectly through pref_service.h
BUG=64893
TEST=compiles and passes tests
Review URL: http://codereview.chromium.org/5461001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67997 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/desktop_notification_service_unittest.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/notifications/desktop_notification_service_unittest.cc b/chrome/browser/notifications/desktop_notification_service_unittest.cc index 3c1c8ca..4532dd2 100644 --- a/chrome/browser/notifications/desktop_notification_service_unittest.cc +++ b/chrome/browser/notifications/desktop_notification_service_unittest.cc @@ -4,8 +4,10 @@ #include "chrome/browser/notifications/desktop_notification_service.h" +#include "base/message_loop.h" #include "base/ref_counted.h" #include "base/waitable_event.h" +#include "chrome/browser/browser_thread.h" #include "chrome/browser/notifications/notifications_prefs_cache.h" #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/prefs/scoped_pref_update.h" |