| Index: third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h
|
| diff --git a/third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h b/third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h
|
| index 9cbe5575ece6c571cebf9071e9244ca02bc0e761..158e665d2a60d50808869174cdb3d1b0d95d793d 100644
|
| --- a/third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h
|
| +++ b/third_party/WebKit/Source/modules/vr/VRGetDevicesCallback.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef VRGetDevicesCallback_h
|
| #define VRGetDevicesCallback_h
|
|
|
| +#include "device/vr/vr_service.mojom-blink.h"
|
| #include "platform/heap/Handle.h"
|
| #include "public/platform/WebCallbacks.h"
|
| #include "public/platform/WebVector.h"
|
| -#include "public/platform/modules/vr/vr_service.mojom-blink.h"
|
|
|
| namespace blink {
|
|
|
| @@ -16,14 +16,14 @@ class VRDisplayCollection;
|
| class ScriptPromiseResolver;
|
|
|
| // Success and failure callbacks for getDisplays.
|
| -using WebVRGetDisplaysCallback = WebCallbacks<mojo::WTFArray<mojom::blink::VRDisplayPtr>, void>;
|
| +using WebVRGetDisplaysCallback = WebCallbacks<mojo::WTFArray<device::blink::VRDisplayPtr>, void>;
|
| class VRGetDevicesCallback final : public WebVRGetDisplaysCallback {
|
| USING_FAST_MALLOC(VRGetDevicesCallback);
|
| public:
|
| VRGetDevicesCallback(ScriptPromiseResolver*, VRDisplayCollection*);
|
| ~VRGetDevicesCallback() override;
|
|
|
| - void onSuccess(mojo::WTFArray<mojom::blink::VRDisplayPtr>) override;
|
| + void onSuccess(mojo::WTFArray<device::blink::VRDisplayPtr>) override;
|
| void onError() override;
|
|
|
| private:
|
|
|