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

Unified Diff: content/browser/device_orientation/data_fetcher_shared_memory_default.cc

Issue 18572014: Implement Android shared memory data fetcher for Device Motion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@renderer-sync-12June-tryASYNC-2-bis-tryRebase-6
Patch Set: rebased Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/device_orientation/data_fetcher_shared_memory_default.cc
diff --git a/content/browser/device_orientation/data_fetcher_shared_memory_default.cc b/content/browser/device_orientation/data_fetcher_shared_memory_default.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c86228967a956ecf00d1c720f1cf1774ecb0fc1a
--- /dev/null
+++ b/content/browser/device_orientation/data_fetcher_shared_memory_default.cc
@@ -0,0 +1,39 @@
+// Copyright (c) 2013 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 "data_fetcher_shared_memory.h"
+
+#include "base/logging.h"
+
+namespace content {
+
+DataFetcherSharedMemory::~DataFetcherSharedMemory() {
+ StopFetchingDeviceMotionData();
+}
+
+bool DataFetcherSharedMemory::NeedsPolling() {
+ return false;
+}
+
+bool DataFetcherSharedMemory::FetchDeviceMotionDataIntoBuffer() {
+ NOTREACHED();
+ return false;
+}
+
+bool DataFetcherSharedMemory::StartFetchingDeviceMotionData(
+ DeviceMotionHardwareBuffer* buffer) {
+ DCHECK(buffer);
+ device_motion_buffer_->seqlock.WriteBegin();
+ device_motion_buffer_->data.allAvailableSensorsAreActive = true;
+ device_motion_buffer_->seqlock.WriteEnd();
+ return true;
+}
+
+void DataFetcherSharedMemory::StopFetchingDeviceMotionData() {
+ device_motion_buffer_->seqlock.WriteBegin();
+ device_motion_buffer_->data.allAvailableSensorsAreActive = false;
+ device_motion_buffer_->seqlock.WriteEnd();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698