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

Unified Diff: chrome/browser/extensions/app_notification_browsertest.cc

Issue 10700130: Introduce LaunchParams struct for opening chrome apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix bad merge 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/app_notification_browsertest.cc
diff --git a/chrome/browser/extensions/app_notification_browsertest.cc b/chrome/browser/extensions/app_notification_browsertest.cc
index 1ee42855102201f2a99f0bddef457e2782fdbdaf..321f1c2a52a59c68586b0c1034738e78dc085df5 100644
--- a/chrome/browser/extensions/app_notification_browsertest.cc
+++ b/chrome/browser/extensions/app_notification_browsertest.cc
@@ -59,12 +59,9 @@ IN_PROC_BROWSER_TEST_F(AppNotificationTest, SaveClientId) {
LoadExtension(test_data_dir_.AppendASCII("app_notifications"));
ASSERT_TRUE(app != NULL);
- application_launch::OpenApplication(browser()->profile(),
- app,
- extension_misc::LAUNCH_TAB,
- GURL(),
- NEW_FOREGROUND_TAB,
- NULL);
+ application_launch::OpenApplication(application_launch::LaunchParams(
+ browser()->profile(), app, extension_misc::LAUNCH_TAB,
+ NEW_FOREGROUND_TAB));
if (!interceptor.was_called())
ui_test_utils::RunMessageLoop();
EXPECT_TRUE(interceptor.was_called());
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager_util.cc ('k') | chrome/browser/extensions/extension_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698