blob: 107bb0d4c2fe73b457d66743f924cae81289c097 [file] [log] [blame]
// 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 THIRD_PARTY_BLINK_RENDERER_MODULES_DEVICE_ORIENTATION_DEVICE_MOTION_CONTROLLER_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_DEVICE_ORIENTATION_DEVICE_MOTION_CONTROLLER_H_
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/frame/device_single_window_event_controller.h"
#include "third_party/blink/renderer/modules/modules_export.h"
namespace blink {
class Event;
class MODULES_EXPORT DeviceMotionController final
: public DeviceSingleWindowEventController,
public Supplement<Document> {
USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionController);
public:
static const char kSupplementName[];
~DeviceMotionController() override;
static DeviceMotionController& From(Document&);
// DeviceSingleWindowEventController
void DidAddEventListener(LocalDOMWindow*,
const AtomicString& event_type) override;
void Trace(blink::Visitor*) override;
private:
explicit DeviceMotionController(Document&);
// Inherited from DeviceEventControllerBase.
void RegisterWithDispatcher() override;
void UnregisterWithDispatcher() override;
bool HasLastData() override;
// Inherited from DeviceSingleWindowEventController.
Event* LastEvent() const override;
const AtomicString& EventTypeName() const override;
bool IsNullEvent(Event*) const override;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_DEVICE_ORIENTATION_DEVICE_MOTION_CONTROLLER_H_