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

Side by Side Diff: content/browser/vr/vr_device.h

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked as per comments! Created 4 years, 9 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 CONTENT_BROWSER_VR_VR_DEVICE_H 5 #ifndef CONTENT_BROWSER_VR_VR_DEVICE_H
6 #define CONTENT_BROWSER_VR_VR_DEVICE_H 6 #define CONTENT_BROWSER_VR_VR_DEVICE_H
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "content/common/vr_service.mojom.h" 9 #include "third_party/WebKit/public/platform/modules/vr/vr_service.mojom.h"
10
11 using namespace mojom;
Yuki 2016/03/22 07:15:03 Ditto.
RaviKasibhatla 2016/03/23 15:20:50 Done.
10 12
11 namespace blink { 13 namespace blink {
12 struct WebHMDSensorState; 14 struct WebHMDSensorState;
13 } 15 }
14 16
15 namespace ui { 17 namespace ui {
16 class BaseWindow; 18 class BaseWindow;
17 } 19 }
18 20
19 namespace content { 21 namespace content {
(...skipping 19 matching lines...) Expand all
39 unsigned int id_; 41 unsigned int id_;
40 42
41 static unsigned int next_id_; 43 static unsigned int next_id_;
42 44
43 DISALLOW_COPY_AND_ASSIGN(VRDevice); 45 DISALLOW_COPY_AND_ASSIGN(VRDevice);
44 }; 46 };
45 47
46 } // namespace content 48 } // namespace content
47 49
48 #endif // CONTENT_BROWSER_VR_VR_DEVICE_H 50 #endif // CONTENT_BROWSER_VR_VR_DEVICE_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698