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

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2167643003: Refactored VRService interaction and added VRServiceClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Liberal sprinkling of 'u's Created 4 years, 5 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 | « no previous file | device/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index a7a06306d3ebd895c1f03c8cc160105543cc3f0a..0633376bd162af3bfb139ad0905642edd6bc77c7 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -107,7 +107,7 @@
#if defined(ENABLE_WEBVR)
#include "base/command_line.h"
#include "content/public/common/content_switches.h"
-#include "device/vr/vr_device_manager.h" // nogncheck
+#include "device/vr/vr_service_impl.h" // nogncheck
#endif
using base::TimeDelta;
@@ -2122,7 +2122,7 @@ void RenderFrameHostImpl::RegisterMojoInterfaces() {
if (browser_command_line.HasSwitch(switches::kEnableWebVR)) {
GetInterfaceRegistry()->AddInterface<device::VRService>(
- base::Bind(&device::VRDeviceManager::BindRequest));
+ base::Bind(&device::VRServiceImpl::BindRequest));
}
#endif
« no previous file with comments | « no previous file | device/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698