Chromium Code Reviews| Index: content/browser/vr/vr_service_consumer.cc |
| diff --git a/content/browser/vr/vr_service_consumer.cc b/content/browser/vr/vr_service_consumer.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e3788480314000b1e1ed2e7e36fb62fbfd59c911 |
| --- /dev/null |
| +++ b/content/browser/vr/vr_service_consumer.cc |
| @@ -0,0 +1,30 @@ |
| +// 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. |
| + |
| +#include "content/browser/vr/vr_service_consumer.h" |
| + |
| +#include "content/browser/vr/vr_service.h" |
| + |
| +namespace content { |
| + |
| +VRServiceConsumer::VRServiceConsumer() : |
| + service_(NULL), |
|
no sievers
2015/03/27 01:18:27
|service_| is unused
|
| + registered_with_service_(false) { |
| +} |
| + |
| +VRServiceConsumer::~VRServiceConsumer() { |
| + if (registered_with_service_) { |
| + VRService::RemoveConsumer(this); |
| + } |
| +} |
| + |
| +VRService* VRServiceConsumer::GetServiceInstance() { |
| + if (!registered_with_service_) { |
| + VRService::AddConsumer(this); |
| + registered_with_service_ = true; |
| + } |
| + return VRService::GetInstance(); |
| +} |
| + |
| +} // namespace content |