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

Unified Diff: content/renderer/render_frame_impl.h

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: content/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index f57b15943a5dc37237e812de9112dcfefcbc1d65..acc7a0970c4b4ccfbb058698d97a0a017b27d09a 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -152,7 +152,6 @@ struct RequestNavigationParams;
struct ResourceResponseHead;
struct StartNavigationParams;
struct StreamOverrideParameters;
-class VRDispatcher;
class CONTENT_EXPORT RenderFrameImpl
: public RenderFrame,
@@ -615,10 +614,6 @@ class CONTENT_EXPORT RenderFrameImpl
const blink::WebSecurityOrigin& security_origin,
blink::WebSetSinkIdCallbacks* web_callbacks) override;
-#if defined(ENABLE_WEBVR)
- blink::WebVRClient* webVRClient() override;
-#endif
-
// WebFrameSerializerClient implementation:
void didSerializeDataForFrame(
const blink::WebCString& data,
@@ -1197,11 +1192,6 @@ class CONTENT_EXPORT RenderFrameImpl
// Whether or not this RenderFrame is currently pasting.
bool is_pasting_;
-#if defined(ENABLE_WEBVR)
- // The VR dispatcher attached to the frame, lazily initialized.
- scoped_ptr<VRDispatcher> vr_dispatcher_;
-#endif
-
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// The external popup for the currently showing select popup.
scoped_ptr<ExternalPopupMenu> external_popup_menu_;

Powered by Google App Engine
This is Rietveld 408576698