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

Side by Side Diff: third_party/WebKit/Source/modules/vr/VRController.cpp

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/vr/VRController.h" 5 #include "modules/vr/VRController.h"
6 6
7 #include "bindings/core/v8/ScriptPromiseResolver.h" 7 #include "bindings/core/v8/ScriptPromiseResolver.h"
8 #include "core/dom/DOMException.h" 8 #include "core/dom/DOMException.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
11 #include "modules/vr/NavigatorVR.h" 11 #include "modules/vr/NavigatorVR.h"
12 #include "modules/vr/VRGetDevicesCallback.h" 12 #include "modules/vr/VRGetDevicesCallback.h"
13 #include "public/platform/InterfaceProvider.h" 13 #include "public/platform/InterfaceProvider.h"
14 14
15 #include "wtf/Assertions.h" 15 #include "wtf/Assertions.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 VRController::VRController(NavigatorVR* navigatorVR) 19 VRController::VRController(NavigatorVR* navigatorVR)
20 : ContextLifecycleObserver(navigatorVR->document()), 20 : ContextLifecycleObserver(navigatorVR->document()),
21 m_navigatorVR(navigatorVR), 21 m_navigatorVR(navigatorVR),
22 m_displaySynced(false), 22 m_displaySynced(false),
23 m_binding(this) { 23 m_binding(this) {
24 navigatorVR->document()->frame()->interfaceProvider()->getInterface( 24 navigatorVR->document()->frame()->interfaceProvider()->getInterface(
25 mojo::GetProxy(&m_service)); 25 mojo::MakeRequest(&m_service));
26 m_service->SetClient( 26 m_service->SetClient(
27 m_binding.CreateInterfacePtrAndBind(), 27 m_binding.CreateInterfacePtrAndBind(),
28 convertToBaseCallback( 28 convertToBaseCallback(
29 WTF::bind(&VRController::onDisplaysSynced, wrapPersistent(this)))); 29 WTF::bind(&VRController::onDisplaysSynced, wrapPersistent(this))));
30 } 30 }
31 31
32 VRController::~VRController() {} 32 VRController::~VRController() {}
33 33
34 void VRController::getDisplays(ScriptPromiseResolver* resolver) { 34 void VRController::getDisplays(ScriptPromiseResolver* resolver) {
35 if (!m_service) { 35 if (!m_service) {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 } 109 }
110 110
111 DEFINE_TRACE(VRController) { 111 DEFINE_TRACE(VRController) {
112 visitor->trace(m_navigatorVR); 112 visitor->trace(m_navigatorVR);
113 visitor->trace(m_displays); 113 visitor->trace(m_displays);
114 114
115 ContextLifecycleObserver::trace(visitor); 115 ContextLifecycleObserver::trace(visitor);
116 } 116 }
117 117
118 } // namespace blink 118 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698