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..62dfe635850bfba59096d9a0d249ec99ef6da622 |
--- /dev/null |
+++ b/content/browser/vr/vr_service_consumer.cc |
@@ -0,0 +1,29 @@ |
+// 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() : |
+ 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 |