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

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

Issue 2561983002: NavigationController: Reload methods migration (Closed)
Patch Set: merge master 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
« no previous file with comments | « blimp/engine/session/tab.cc ('k') | chrome/browser/apps/guest_view/web_view_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e37e990b414b3856fbbb3373c025f8b9e60a563e..f931b2d7a787195537d5f243747cf12b08942cb0 100644
--- a/chrome/browser/android/vr_shell/vr_shell.cc
+++ b/chrome/browser/android/vr_shell/vr_shell.cc
@@ -366,11 +366,11 @@ void VrShell::DoUiAction(const UiAction action) {
controller.GoForward();
break;
case RELOAD:
- controller.Reload(false);
+ controller.Reload(content::ReloadType::NORMAL, false);
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());
« no previous file with comments | « blimp/engine/session/tab.cc ('k') | chrome/browser/apps/guest_view/web_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698