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

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: HasExtensionPermission Created 8 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/extensions/shadow_dom_apitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/shadow_dom_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698