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

Side by Side Diff: third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h

Issue 1906883002: [Do Not Commit] Migrate vr service from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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 #ifndef VRGetDevicesCallback_h 5 #ifndef VRGetDevicesCallback_h
6 #define VRGetDevicesCallback_h 6 #define VRGetDevicesCallback_h
7 7
8 #include "modules/vr/VRController.h"
8 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
9 #include "public/platform/modules/vr/WebVRClient.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class VRHardwareUnitCollection; 13 class VRHardwareUnitCollection;
14 class ScriptPromiseResolver; 14 class ScriptPromiseResolver;
15 class WebVRClient;
16 15
17 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { 16 class VRGetDevicesCallback final : public WebVRGetDevicesCallback {
18 USING_FAST_MALLOC(VRGetDevicesCallback); 17 USING_FAST_MALLOC(VRGetDevicesCallback);
19 public: 18 public:
20 VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*); 19 VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*);
21 ~VRGetDevicesCallback() override; 20 ~VRGetDevicesCallback() override;
22 21
23 void onSuccess(const WebVector<WebVRDevice>&) override; 22 void onSuccess(const WebVector<WebVRDevice>&) override;
24 void onError() override; 23 void onError() override;
25 24
26 private: 25 private:
27 Persistent<ScriptPromiseResolver> m_resolver; 26 Persistent<ScriptPromiseResolver> m_resolver;
28 Persistent<VRHardwareUnitCollection> m_hardwareUnits; 27 Persistent<VRHardwareUnitCollection> m_hardwareUnits;
29 }; 28 };
30 29
31 } // namespace blink 30 } // namespace blink
32 31
33 #endif // VRGetDevicesCallback_h 32 #endif // VRGetDevicesCallback_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VRController.cpp ('k') | third_party/WebKit/Source/modules/vr/VRHardwareUnit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698