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

Unified Diff: chrome/browser/apps/app_browsertest.cc

Issue 757433004: Add SOURCE_TEST. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed remaining instances of SOURCE_BROWSER_TEST. Created 6 years 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
« no previous file with comments | « no previous file | chrome/browser/apps/app_browsertest_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/app_browsertest.cc
diff --git a/chrome/browser/apps/app_browsertest.cc b/chrome/browser/apps/app_browsertest.cc
index 7d604b44cbc58db7570f468cf2c6585bf01c9687..c3d4352898037c1c245d275cd6f0dcea580d0e5b 100644
--- a/chrome/browser/apps/app_browsertest.cc
+++ b/chrome/browser/apps/app_browsertest.cc
@@ -512,7 +512,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, LaunchWithRelativeFile) {
// Run the test
AppLaunchParams params(browser()->profile(), extension, LAUNCH_CONTAINER_NONE,
- NEW_WINDOW, extensions::SOURCE_UNTRACKED);
+ NEW_WINDOW, extensions::SOURCE_TEST);
params.command_line = *CommandLine::ForCurrentProcess();
params.current_directory = test_data_dir_;
OpenApplication(params);
@@ -843,7 +843,7 @@ void PlatformAppDevToolsBrowserTest::RunTestWithDevTools(
content::NotificationService::AllSources());
OpenApplication(AppLaunchParams(browser()->profile(), extension,
LAUNCH_CONTAINER_NONE, NEW_WINDOW,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
app_loaded_observer.Wait();
window = GetFirstAppWindow();
ASSERT_TRUE(window);
@@ -989,7 +989,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
ExtensionTestMessageListener launched_listener("Launched", false);
OpenApplication(AppLaunchParams(browser()->profile(), extension,
LAUNCH_CONTAINER_NONE, NEW_WINDOW,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
}
@@ -1013,7 +1013,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
ExtensionTestMessageListener launched_listener("Launched", false);
OpenApplication(AppLaunchParams(browser()->profile(), extension,
LAUNCH_CONTAINER_NONE, NEW_WINDOW,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
ASSERT_FALSE(should_not_install.seen());
@@ -1051,7 +1051,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, ComponentAppBackgroundPage) {
ExtensionTestMessageListener launched_listener("Launched", false);
OpenApplication(AppLaunchParams(browser()->profile(), extension,
LAUNCH_CONTAINER_NONE, NEW_WINDOW,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
}
@@ -1075,7 +1075,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
ExtensionTestMessageListener launched_listener("Launched", false);
OpenApplication(AppLaunchParams(browser()->profile(), extension,
LAUNCH_CONTAINER_NONE, NEW_WINDOW,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
}
@@ -1227,7 +1227,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppIncognitoBrowserTest, IncognitoComponentApp) {
OpenApplication(AppLaunchParams(incognito_profile, file_manager, CURRENT_TAB,
chrome::HOST_DESKTOP_TYPE_NATIVE,
- extensions::SOURCE_UNTRACKED));
+ extensions::SOURCE_TEST));
while (!ContainsKey(opener_app_ids_, file_manager->id())) {
content::RunAllPendingInMessageLoop();
« no previous file with comments | « no previous file | chrome/browser/apps/app_browsertest_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698