summaryrefslogtreecommitdiff
path: root/chromium/content/browser/device_sensors/device_orientation_absolute_message_filter.cc
blob: 572952cea11efde014fe5181829662c27a136425 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2015 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 "content/browser/device_sensors/device_orientation_absolute_message_filter.h"

#include "content/browser/device_sensors/device_inertial_sensor_service.h"
#include "content/common/device_sensors/device_orientation_messages.h"

namespace content {

DeviceOrientationAbsoluteMessageFilter::DeviceOrientationAbsoluteMessageFilter()
    : BrowserMessageFilter(DeviceOrientationMsgStart),
      is_started_(false) {
}

DeviceOrientationAbsoluteMessageFilter::
    ~DeviceOrientationAbsoluteMessageFilter() {
  DCHECK_CURRENTLY_ON(BrowserThread::IO);
  if (is_started_) {
    DeviceInertialSensorService::GetInstance()->RemoveConsumer(
        CONSUMER_TYPE_ORIENTATION_ABSOLUTE);
  }
}

bool DeviceOrientationAbsoluteMessageFilter::OnMessageReceived(
    const IPC::Message& message) {
  bool handled = true;
  IPC_BEGIN_MESSAGE_MAP(DeviceOrientationAbsoluteMessageFilter, message)
    IPC_MESSAGE_HANDLER(DeviceOrientationAbsoluteHostMsg_StartPolling,
                        OnStartPolling)
    IPC_MESSAGE_HANDLER(DeviceOrientationAbsoluteHostMsg_StopPolling,
                        OnStopPolling)
    IPC_MESSAGE_UNHANDLED(handled = false)
  IPC_END_MESSAGE_MAP()
  return handled;
}

void DeviceOrientationAbsoluteMessageFilter::OnStartPolling() {
  DCHECK(!is_started_);
  if (is_started_)
    return;
  is_started_ = true;
  DeviceInertialSensorService::GetInstance()->AddConsumer(
      CONSUMER_TYPE_ORIENTATION_ABSOLUTE);
  DidStartPolling();
}

void DeviceOrientationAbsoluteMessageFilter::OnStopPolling() {
  DCHECK(is_started_);
  if (!is_started_)
    return;
  is_started_ = false;
  DeviceInertialSensorService::GetInstance()->RemoveConsumer(
      CONSUMER_TYPE_ORIENTATION_ABSOLUTE);
}

void DeviceOrientationAbsoluteMessageFilter::DidStartPolling() {
  Send(new DeviceOrientationAbsoluteMsg_DidStartPolling(
      DeviceInertialSensorService::GetInstance()->
          GetSharedMemoryHandleForProcess(
              CONSUMER_TYPE_ORIENTATION_ABSOLUTE,
              PeerHandle())));
}

}  // namespace content