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

Unified Diff: chrome/browser/android/vr_shell/vr_shell.cc

Issue 2561983002: NavigationController: Reload methods migration (Closed)
Patch Set: one more mac build fix Created 4 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
Index: chrome/browser/android/vr_shell/vr_shell.cc
diff --git a/chrome/browser/android/vr_shell/vr_shell.cc b/chrome/browser/android/vr_shell/vr_shell.cc
index 8fad473cc54708ffc5cedc0da52b4d5bcb9dd974..03b273dba53ef8e13c9851387a8d18fd2ce3736c 100644
--- a/chrome/browser/android/vr_shell/vr_shell.cc
+++ b/chrome/browser/android/vr_shell/vr_shell.cc
@@ -1080,11 +1080,11 @@ void VrShell::DoUiActionOnUI(const UiAction action) {
controller.GoForward();
break;
case RELOAD:
- controller.Reload(false);
+ controller.Reload(content::ReloadType::NORMAL, false);
Takashi Toyoshima 2016/12/15 06:21:51 Probably this false is ok. I assume vr_shell is so
break;
#if defined(ENABLE_VR_SHELL_UI_DEV)
case RELOAD_UI:
- ui_contents_->GetController().Reload(false);
+ ui_contents_->GetController().Reload(content::ReloadType::NORMAL, false);
html_interface_.reset(new UiInterface(UiInterface::Mode::STANDARD,
main_contents_->IsFullscreen()));
vr_web_contents_observer_->SetUiInterface(html_interface_.get());

Powered by Google App Engine
This is Rietveld 408576698