summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_main_browsertest.cc
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-16 19:38:42 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-16 19:38:42 +0000
commit884033e64d9b07c1480d12cb731d2ae5967e88e7 (patch)
tree5eb173a4fa1f560394ac2d160c3125cf690114a6 /chrome/browser/chrome_main_browsertest.cc
parentacefb3a3086fce5ec81e141c55be5f4a414a8e41 (diff)
downloadchromium_src-884033e64d9b07c1480d12cb731d2ae5967e88e7.zip
chromium_src-884033e64d9b07c1480d12cb731d2ae5967e88e7.tar.gz
chromium_src-884033e64d9b07c1480d12cb731d2ae5967e88e7.tar.bz2
Move notifications used only in chrome/ out of content/.
Moved NOTIFICATION_TAB_ADDED, NOTIFICATION_TAB_PARENTED, and NOTIFICATION_TAB_CLOSING. Turned NOTIFICATION_TAB_CLOSED into NOTIFICATION_WEB_CONTENTS_DESTROYED. BUG=76698 TEST=none Review URL: http://codereview.chromium.org/10079023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132449 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_main_browsertest.cc')
-rw-r--r--chrome/browser/chrome_main_browsertest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chrome_main_browsertest.cc b/chrome/browser/chrome_main_browsertest.cc
index 513b203..b34080a 100644
--- a/chrome/browser/chrome_main_browsertest.cc
+++ b/chrome/browser/chrome_main_browsertest.cc
@@ -73,7 +73,7 @@ IN_PROC_BROWSER_TEST_F(ChromeMainTest, ReuseBrowserInstanceWhenOpeningFile) {
FilePath(), FilePath().AppendASCII("empty.html"));
new_command_line_.AppendArgPath(test_file_path);
ui_test_utils::WindowedNotificationObserver observer(
- content::NOTIFICATION_TAB_ADDED,
+ chrome::NOTIFICATION_TAB_ADDED,
content::NotificationService::AllSources());
Relaunch();
observer.Wait();
@@ -136,7 +136,7 @@ IN_PROC_BROWSER_TEST_F(ChromeMainTest, SecondLaunchFromIncognitoWithNormalUrl) {
FilePath(), FilePath().AppendASCII("empty.html"));
new_command_line_.AppendArgPath(test_file_path);
ui_test_utils::WindowedNotificationObserver tab_observer(
- content::NOTIFICATION_TAB_ADDED,
+ chrome::NOTIFICATION_TAB_ADDED,
content::NotificationService::AllSources());
Relaunch();
tab_observer.Wait();