| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/vr/android/cardboard/cardboard_vr_device_provider.h" | |
| 6 | |
| 7 #include "content/browser/vr/android/cardboard/cardboard_vr_device.h" | |
| 8 | |
| 9 namespace content { | |
| 10 | |
| 11 CardboardVRDeviceProvider::CardboardVRDeviceProvider() : VRDeviceProvider() { | |
| 12 } | |
| 13 | |
| 14 CardboardVRDeviceProvider::~CardboardVRDeviceProvider() { | |
| 15 } | |
| 16 | |
| 17 void CardboardVRDeviceProvider::GetDevices(std::vector<VRDevice*>& devices) { | |
| 18 if (!cardboard_device_) { | |
| 19 cardboard_device_.reset(new CardboardVRDevice(this)); | |
| 20 } | |
| 21 | |
| 22 devices.push_back(cardboard_device_.get()); | |
| 23 } | |
| 24 | |
| 25 void CardboardVRDeviceProvider::Initialize() { | |
| 26 // No initialization needed for Cardboard devices. | |
| 27 } | |
| 28 | |
| 29 } // namespace content | |
| OLD | NEW |