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

Unified Diff: content/renderer/device_orientation/device_motion_shared_memory_reader.h

Issue 14678012: Implement the content/renderer and content/browser part of the Device Motion API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added unit test for device_motion_event_pump Created 7 years, 7 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/renderer/device_orientation/device_motion_shared_memory_reader.h
diff --git a/content/renderer/device_orientation/device_motion_shared_memory_reader.h b/content/renderer/device_orientation/device_motion_shared_memory_reader.h
new file mode 100644
index 0000000000000000000000000000000000000000..21c3396662c437f81656d0ed3331ef0c5d177671
--- /dev/null
+++ b/content/renderer/device_orientation/device_motion_shared_memory_reader.h
@@ -0,0 +1,36 @@
+// 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.
+
+#ifndef CONTENT_RENDERER_DEVICE_MOTION_SHARED_MEMORY_READER_H_
+#define CONTENT_RENDERER_DEVICE_MOTION_SHARED_MEMORY_READER_H_
+
+#include "base/shared_memory.h"
+#include "base/memory/scoped_ptr.h"
+
+namespace WebKit {
+class WebDeviceMotionData;
+}
+
+namespace content {
+
+struct DeviceMotionHardwareBuffer;
+
+class DeviceMotionSharedMemoryReader {
+ public:
+ DeviceMotionSharedMemoryReader();
+ virtual ~DeviceMotionSharedMemoryReader() { }
+
+ virtual bool latestDeviceMotionData(WebKit::WebDeviceMotionData& data);
darin (slow to review) 2013/05/29 06:41:53 nit: use google C++ style for naming methods
darin (slow to review) 2013/05/29 06:41:53 nit add a verb here... like "Query" or "Get"
timvolodine 2013/05/29 18:59:06 Done.
timvolodine 2013/05/29 18:59:06 Done.
+ virtual void startUpdating();
+ virtual void stopUpdating();
+
+ private:
+ base::SharedMemoryHandle renderer_shared_memory_handle_;
+ scoped_ptr<base::SharedMemory> renderer_shared_memory_;
+ DeviceMotionHardwareBuffer* device_motion_hardware_buffer_;
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_DEVICE_MOTION_SHARED_MEMORY_READER_H_

Powered by Google App Engine
This is Rietveld 408576698