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

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

Issue 1967633002: Updated VRService to match the latest Blink WebVR interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: And we're back to removing all the array size checks Created 4 years, 7 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 "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "public/platform/WebCallbacks.h" 9 #include "public/platform/WebCallbacks.h"
10 #include "public/platform/WebVector.h" 10 #include "public/platform/WebVector.h"
11 #include "public/platform/modules/vr/vr_service.mojom-blink.h" 11 #include "public/platform/modules/vr/vr_service.mojom-blink.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class VRDisplayCollection; 15 class VRDisplayCollection;
16 class ScriptPromiseResolver; 16 class ScriptPromiseResolver;
17 17
18 // Success and failure callbacks for getDevices. 18 // Success and failure callbacks for getDisplays.
19 using WebVRGetDevicesCallback = WebCallbacks<mojo::WTFArray<mojom::blink::VRDevi ceInfoPtr>, void>; 19 using WebVRGetDisplaysCallback = WebCallbacks<mojo::WTFArray<mojom::blink::VRDis playPtr>, void>;
20 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { 20 class VRGetDevicesCallback final : public WebVRGetDisplaysCallback {
21 USING_FAST_MALLOC(VRGetDevicesCallback); 21 USING_FAST_MALLOC(VRGetDevicesCallback);
22 public: 22 public:
23 VRGetDevicesCallback(ScriptPromiseResolver*, VRDisplayCollection*); 23 VRGetDevicesCallback(ScriptPromiseResolver*, VRDisplayCollection*);
24 ~VRGetDevicesCallback() override; 24 ~VRGetDevicesCallback() override;
25 25
26 void onSuccess(mojo::WTFArray<mojom::blink::VRDeviceInfoPtr>) override; 26 void onSuccess(mojo::WTFArray<mojom::blink::VRDisplayPtr>) override;
27 void onError() override; 27 void onError() override;
28 28
29 private: 29 private:
30 Persistent<ScriptPromiseResolver> m_resolver; 30 Persistent<ScriptPromiseResolver> m_resolver;
31 Persistent<VRDisplayCollection> m_displays; 31 Persistent<VRDisplayCollection> m_displays;
32 }; 32 };
33 33
34 } // namespace blink 34 } // namespace blink
35 35
36 #endif // VRGetDevicesCallback_h 36 #endif // VRGetDevicesCallback_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698