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

Unified Diff: ui/keyboard/content/keyboard_ui_content.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
« no previous file with comments | « ui/base/window_open_disposition.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/keyboard/content/keyboard_ui_content.cc
diff --git a/ui/keyboard/content/keyboard_ui_content.cc b/ui/keyboard/content/keyboard_ui_content.cc
index cd6a2ab3a753c11ec8bfc8623193d8aea9913324..1b75b6afbb4e0019e2e9abb647a15bcb98f2d10f 100644
--- a/ui/keyboard/content/keyboard_ui_content.cc
+++ b/ui/keyboard/content/keyboard_ui_content.cc
@@ -296,12 +296,9 @@ const aura::Window* KeyboardUIContent::GetKeyboardRootWindow() const {
void KeyboardUIContent::LoadContents(const GURL& url) {
if (keyboard_contents_) {
- content::OpenURLParams params(
- url,
- content::Referrer(),
- SINGLETON_TAB,
- ui::PAGE_TRANSITION_AUTO_TOPLEVEL,
- false);
+ content::OpenURLParams params(url, content::Referrer(),
+ WindowOpenDisposition::SINGLETON_TAB,
+ ui::PAGE_TRANSITION_AUTO_TOPLEVEL, false);
keyboard_contents_->OpenURL(params);
}
}
« no previous file with comments | « ui/base/window_open_disposition.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698