Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |