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

Unified Diff: chrome/browser/oom_priority_manager_browsertest.cc

Issue 8224023: Don't show URL for pending new navigations initiated by the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 9 years, 2 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
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome/browser/rlz/rlz_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/oom_priority_manager_browsertest.cc
diff --git a/chrome/browser/oom_priority_manager_browsertest.cc b/chrome/browser/oom_priority_manager_browsertest.cc
index eaebd6234920da38467e4b27c15985305e94458d..52999980985c906c676bcc0dc1d20fe1583d1ded 100644
--- a/chrome/browser/oom_priority_manager_browsertest.cc
+++ b/chrome/browser/oom_priority_manager_browsertest.cc
@@ -22,19 +22,21 @@ IN_PROC_BROWSER_TEST_F(OomPriorityManagerTest, OomPriorityManagerBasics) {
WindowedNotificationObserver load1(content::NOTIFICATION_LOAD_STOP,
NotificationService::AllSources());
OpenURLParams open1(GURL("chrome://about"), GURL(),
- CURRENT_TAB, content::PAGE_TRANSITION_TYPED);
+ CURRENT_TAB, content::PAGE_TRANSITION_TYPED, false);
browser()->OpenURL(open1);
WindowedNotificationObserver load2(content::NOTIFICATION_LOAD_STOP,
NotificationService::AllSources());
OpenURLParams open2(GURL("chrome://credits"), GURL(),
- NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_TYPED);
+ NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_TYPED,
+ false);
browser()->OpenURL(open2);
WindowedNotificationObserver load3(content::NOTIFICATION_LOAD_STOP,
NotificationService::AllSources());
OpenURLParams open3(GURL("chrome://terms"), GURL(),
- NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_TYPED);
+ NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_TYPED,
+ false);
browser()->OpenURL(open3);
load1.Wait();
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome/browser/rlz/rlz_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698