#ifndef CONTENT_BROWSER_RENDERER_HOST_DEVICE_MOTION_MESSAGE_FILTER_H_
#define CONTENT_BROWSER_RENDERER_HOST_DEVICE_MOTION_MESSAGE_FILTER_H_
#include "base/compiler_specific.h"
#include "content/public/browser/browser_message_filter.h"
namespace content {
class DeviceMotionService;
class RenderProcessHost;
class DeviceMotionMessageFilter : public BrowserMessageFilter {
public:
DeviceMotionMessageFilter();
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
private:
virtual ~DeviceMotionMessageFilter();
void OnDeviceMotionStartPolling();
void OnDeviceMotionStopPolling();
void DidStartDeviceMotionPolling();
bool is_started_;
DISALLOW_COPY_AND_ASSIGN(DeviceMotionMessageFilter);
};
}
#endif