Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: chrome/browser/extensions/platform_app_browsertest.cc

Issue 10598006: Browser tag shim (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, OpenLink) { 262 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, OpenLink) {
263 ASSERT_TRUE(StartTestServer()); 263 ASSERT_TRUE(StartTestServer());
264 ui_test_utils::WindowedNotificationObserver observer( 264 ui_test_utils::WindowedNotificationObserver observer(
265 chrome::NOTIFICATION_TAB_ADDED, 265 chrome::NOTIFICATION_TAB_ADDED,
266 content::Source<content::WebContentsDelegate>(browser())); 266 content::Source<content::WebContentsDelegate>(browser()));
267 LoadAndLaunchPlatformApp("open_link"); 267 LoadAndLaunchPlatformApp("open_link");
268 observer.Wait(); 268 observer.Wait();
269 ASSERT_EQ(2, browser()->tab_count()); 269 ASSERT_EQ(2, browser()->tab_count());
270 } 270 }
271
272 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, BrowserTag) {
273 ASSERT_TRUE(RunPlatformAppTest("platform_apps/browser_tag")) << message_;
274 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/shadow_dom_apitest.cc » ('j') | chrome/common/extensions/extension_set.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698