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

Side by Side Diff: content/browser/device_sensors/device_light_message_filter.h

Issue 1164563003: Extract device_sensors to /device via Mojofication (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_
7
8 #include "content/public/browser/browser_message_filter.h"
9
10 namespace content {
11
12 class DeviceLightMessageFilter : public BrowserMessageFilter {
13 public:
14 DeviceLightMessageFilter();
15
16 // BrowserMessageFilter implementation.
17 bool OnMessageReceived(const IPC::Message& message) override;
18
19 private:
20 ~DeviceLightMessageFilter() override;
21
22 void OnDeviceLightStartPolling();
23 void OnDeviceLightStopPolling();
24 void DidStartDeviceLightPolling();
25
26 bool is_started_;
27
28 DISALLOW_COPY_AND_ASSIGN(DeviceLightMessageFilter);
29 };
30
31 } // namespace content
32
33 #endif // CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_LIGHT_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698