summaryrefslogtreecommitdiffstats
path: root/chrome/browser/prefs
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 04:29:16 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 04:29:16 +0000
commit0d6e9bd0a2788f03f07f4b90a222fe06270b79b5 (patch)
tree3fc6241baab067ed8e2ad6269d6bbe671d1f5fe2 /chrome/browser/prefs
parent5ef8e376b54fe7c38dcf3bae8219b3cabae7597c (diff)
downloadchromium_src-0d6e9bd0a2788f03f07f4b90a222fe06270b79b5.zip
chromium_src-0d6e9bd0a2788f03f07f4b90a222fe06270b79b5.tar.gz
chromium_src-0d6e9bd0a2788f03f07f4b90a222fe06270b79b5.tar.bz2
Move content_notification_types.h from content\common to content\public\browser. I dropped the "content" from the name to match other files whose chrome version adds a "chrome_" prefix. I also moved it to the browser directory since notifications are only used in the browser process. I will move the other notification files in future changes.
BUG=98716 Review URL: http://codereview.chromium.org/8331001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/prefs')
-rw-r--r--chrome/browser/prefs/pref_change_registrar_unittest.cc2
-rw-r--r--chrome/browser/prefs/pref_observer_mock.h2
-rw-r--r--chrome/browser/prefs/pref_set_observer.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/prefs/pref_change_registrar_unittest.cc b/chrome/browser/prefs/pref_change_registrar_unittest.cc
index 95be2fb..fdabfd9 100644
--- a/chrome/browser/prefs/pref_change_registrar_unittest.cc
+++ b/chrome/browser/prefs/pref_change_registrar_unittest.cc
@@ -4,10 +4,10 @@
#include "chrome/browser/prefs/pref_change_registrar.h"
#include "chrome/test/base/testing_pref_service.h"
-#include "content/common/content_notification_types.h"
#include "content/common/notification_details.h"
#include "content/common/notification_observer_mock.h"
#include "content/common/notification_source.h"
+#include "content/public/browser/notification_types.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
diff --git a/chrome/browser/prefs/pref_observer_mock.h b/chrome/browser/prefs/pref_observer_mock.h
index 3ef7437..d65d6b2 100644
--- a/chrome/browser/prefs/pref_observer_mock.h
+++ b/chrome/browser/prefs/pref_observer_mock.h
@@ -9,10 +9,10 @@
#include <string>
#include "chrome/browser/prefs/pref_service.h"
-#include "content/common/content_notification_types.h"
#include "content/common/notification_details.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_source.h"
+#include "content/public/browser/notification_types.h"
#include "testing/gmock/include/gmock/gmock.h"
using testing::Pointee;
diff --git a/chrome/browser/prefs/pref_set_observer.cc b/chrome/browser/prefs/pref_set_observer.cc
index 4ab741f..80faf32 100644
--- a/chrome/browser/prefs/pref_set_observer.cc
+++ b/chrome/browser/prefs/pref_set_observer.cc
@@ -5,7 +5,7 @@
#include "chrome/browser/prefs/pref_set_observer.h"
#include "chrome/common/pref_names.h"
-#include "content/common/content_notification_types.h"
+#include "content/public/browser/notification_types.h"
PrefSetObserver::PrefSetObserver(PrefService* pref_service,
NotificationObserver* observer)