| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/app/chrome_command_ids.h" | 5 #include "chrome/app/chrome_command_ids.h" |
| 6 #include "chrome/browser/automation/automation_util.h" | 6 #include "chrome/browser/automation/automation_util.h" |
| 7 #include "chrome/browser/tab_contents/render_view_context_menu.h" | 7 #include "chrome/browser/tab_contents/render_view_context_menu.h" |
| 8 #include "chrome/browser/extensions/extension_test_message_listener.h" | 8 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| 9 #include "chrome/browser/extensions/platform_app_browsertest_util.h" | 9 #include "chrome/browser/extensions/platform_app_browsertest_util.h" |
| 10 #include "chrome/browser/extensions/shell_window_registry.h" | 10 #include "chrome/browser/extensions/shell_window_registry.h" |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 | 271 |
| 272 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, OpenLink) { | 272 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, OpenLink) { |
| 273 ASSERT_TRUE(StartTestServer()); | 273 ASSERT_TRUE(StartTestServer()); |
| 274 ui_test_utils::WindowedNotificationObserver observer( | 274 ui_test_utils::WindowedNotificationObserver observer( |
| 275 chrome::NOTIFICATION_TAB_ADDED, | 275 chrome::NOTIFICATION_TAB_ADDED, |
| 276 content::Source<content::WebContentsDelegate>(browser())); | 276 content::Source<content::WebContentsDelegate>(browser())); |
| 277 LoadAndLaunchPlatformApp("open_link"); | 277 LoadAndLaunchPlatformApp("open_link"); |
| 278 observer.Wait(); | 278 observer.Wait(); |
| 279 ASSERT_EQ(2, browser()->tab_count()); | 279 ASSERT_EQ(2, browser()->tab_count()); |
| 280 } | 280 } |
| 281 |
| 282 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, BrowserTag) { |
| 283 ASSERT_TRUE(RunPlatformAppTest("platform_apps/browser_tag")) << message_; |
| 284 } |
| OLD | NEW |