summaryrefslogtreecommitdiff
path: root/chromium/content/browser/device_sensors/device_light_message_filter.h
blob: bf302b7dd5a306572fad9a8a2792d81bd430091e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2014 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_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_
#define CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_

#include "content/browser/device_sensors/device_sensor_message_filter.h"

namespace content {

class DeviceLightMessageFilter : public DeviceSensorMessageFilter {
 public:
  DeviceLightMessageFilter();

  // BrowserMessageFilter implementation.
  bool OnMessageReceived(const IPC::Message& message) override;

 private:
  ~DeviceLightMessageFilter() override;

  // DeviceSensorMessageFilter implementation.
  void DidStartPolling(base::SharedMemoryHandle handle) override;

  DISALLOW_COPY_AND_ASSIGN(DeviceLightMessageFilter);
};

}  // namespace content

#endif  // CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_