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

Unified Diff: third_party/WebKit/public/platform/modules/vr/WebVRClient.h

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT! 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/platform/modules/vr/WebVRClient.h
diff --git a/third_party/WebKit/public/platform/modules/vr/WebVRClient.h b/third_party/WebKit/public/platform/modules/vr/WebVRClient.h
deleted file mode 100644
index 6de79d994e4b5628b08fec1c4944c8adfe9ee8a7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/modules/vr/WebVRClient.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WebVRClient_h
-#define WebVRClient_h
-
-#include "public/platform/WebCallbacks.h"
-#include "public/platform/WebVector.h"
-#include "public/platform/modules/vr/WebVR.h"
-
-namespace blink {
-
-// Success and failure callbacks for getDevices.
-using WebVRGetDevicesCallback = WebCallbacks<const WebVector<WebVRDevice>&, void>;
-
-// Client handling VR device communication for a given WebFrame.
-class WebVRClient {
-public:
- virtual ~WebVRClient() { }
-
- virtual void getDevices(WebVRGetDevicesCallback*) = 0;
-
- virtual void getSensorState(unsigned index, blink::WebHMDSensorState& into) = 0;
-
- virtual void resetSensor(unsigned index) = 0;
-};
-
-} // namespace blink
-
-#endif // WebVRClient_h
« no previous file with comments | « third_party/WebKit/public/platform/modules/vr/OWNERS ('k') | third_party/WebKit/public/platform/modules/vr/vr_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698