diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 00:20:19 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 00:20:19 +0000 |
commit | 5de63471b1d2b1532e28fb688e727dfc53e267d7 (patch) | |
tree | 1130dfc85ea1063fd858965ab382a9c3fe9e48d0 /chrome/browser/notifications | |
parent | ed59063c6b2e7aa113bbc19cc0cac6422799af57 (diff) | |
download | chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.zip chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.tar.gz chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.tar.bz2 |
Get rid of a bunch of includes to old locations of headers.
TBR=avi
Review URL: http://codereview.chromium.org/6602061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon.cc | 2 | ||||
-rw-r--r-- | chrome/browser/notifications/balloon_host.cc | 4 | ||||
-rw-r--r-- | chrome/browser/notifications/balloon_host.h | 2 | ||||
-rw-r--r-- | chrome/browser/notifications/notification_ui_manager.cc | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/notifications/balloon.cc b/chrome/browser/notifications/balloon.cc index 115e1ee..6526559f 100644 --- a/chrome/browser/notifications/balloon.cc +++ b/chrome/browser/notifications/balloon.cc @@ -7,7 +7,7 @@ #include "base/logging.h" #include "chrome/browser/notifications/balloon_collection.h" #include "chrome/browser/notifications/notification.h" -#include "chrome/browser/renderer_host/site_instance.h" +#include "content/browser/site_instance.h" #include "ui/gfx/rect.h" #include "ui/gfx/size.h" diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc index 6cf4ba1..ab366df 100644 --- a/chrome/browser/notifications/balloon_host.cc +++ b/chrome/browser/notifications/balloon_host.cc @@ -9,8 +9,6 @@ #include "chrome/browser/notifications/balloon.h" #include "chrome/browser/notifications/notification.h" #include "chrome/browser/profiles/profile.h" -#include "chrome/browser/renderer_host/render_view_host.h" -#include "chrome/browser/renderer_host/site_instance.h" #include "chrome/browser/renderer_preferences_util.h" #include "chrome/common/bindings_policy.h" #include "chrome/common/notification_service.h" @@ -20,6 +18,8 @@ #include "chrome/common/render_messages_params.h" #include "chrome/common/renderer_preferences.h" #include "chrome/common/url_constants.h" +#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/site_instance.h" #include "webkit/glue/webpreferences.h" BalloonHost::BalloonHost(Balloon* balloon) diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h index afb3eb1..c86060b 100644 --- a/chrome/browser/notifications/balloon_host.h +++ b/chrome/browser/notifications/balloon_host.h @@ -10,10 +10,10 @@ #include <vector> #include "chrome/browser/extensions/extension_function_dispatcher.h" -#include "chrome/browser/renderer_host/render_view_host_delegate.h" #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" #include "chrome/common/notification_observer.h" #include "chrome/common/notification_registrar.h" +#include "content/browser/renderer_host/render_view_host_delegate.h" class Balloon; class Browser; diff --git a/chrome/browser/notifications/notification_ui_manager.cc b/chrome/browser/notifications/notification_ui_manager.cc index 51a2c66..4829c2f 100644 --- a/chrome/browser/notifications/notification_ui_manager.cc +++ b/chrome/browser/notifications/notification_ui_manager.cc @@ -13,10 +13,10 @@ #include "chrome/browser/notifications/balloon_collection.h" #include "chrome/browser/notifications/notification.h" #include "chrome/browser/prefs/pref_service.h" -#include "chrome/browser/renderer_host/site_instance.h" #include "chrome/common/notification_service.h" #include "chrome/common/notification_type.h" #include "chrome/common/pref_names.h" +#include "content/browser/site_instance.h" namespace { const int kUserStatePollingIntervalSeconds = 1; |