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

Unified Diff: chrome/browser/sync/test/integration/performance/sessions_sync_perf_test.cc

Issue 2248873002: Convert WindowOpenDisposition to an enum class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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/sync/test/integration/performance/sessions_sync_perf_test.cc
diff --git a/chrome/browser/sync/test/integration/performance/sessions_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/sessions_sync_perf_test.cc
index 21c221f74bee87edcbcb7db50a015835faed1d85..c4c5852692c54c90b0e543899b817083836eb05c 100644
--- a/chrome/browser/sync/test/integration/performance/sessions_sync_perf_test.cc
+++ b/chrome/browser/sync/test/integration/performance/sessions_sync_perf_test.cc
@@ -65,12 +65,10 @@ void SessionsSyncPerfTest::UpdateTabs(int profile) {
for (int i = 0; i < browser->tab_strip_model()->count(); ++i) {
chrome::SelectNumberedTab(browser, i);
url = NextURL();
- browser->OpenURL(
- OpenURLParams(url,
- content::Referrer(GURL("http://localhost"),
- blink::WebReferrerPolicyDefault),
- CURRENT_TAB,
- ui::PAGE_TRANSITION_LINK, false));
+ browser->OpenURL(OpenURLParams(
+ url, content::Referrer(GURL("http://localhost"),
+ blink::WebReferrerPolicyDefault),
+ WindowOpenDisposition::CURRENT_TAB, ui::PAGE_TRANSITION_LINK, false));
urls.push_back(url);
}
WaitForTabsToLoad(profile, urls);
« no previous file with comments | « chrome/browser/supervised_user/supervised_user_browsertest.cc ('k') | chrome/browser/tab_contents/view_source_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698