blob: e86012df1fe6db33c704295d2a69b6151319c4e9 [file] [log] [blame]
// Copyright 2017 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 SERVICES_DEVICE_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_
#define SERVICES_DEVICE_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_
#include "base/macros.h"
#include "services/device/public/mojom/screen_orientation.mojom.h"
namespace device {
class ScreenOrientationListenerAndroid
: public mojom::ScreenOrientationListener {
public:
static void Create(mojom::ScreenOrientationListenerRequest request);
~ScreenOrientationListenerAndroid() override;
private:
ScreenOrientationListenerAndroid();
// mojom::ScreenOrientationListener:
void Start() override;
void Stop() override;
void IsAutoRotateEnabledByUser(
IsAutoRotateEnabledByUserCallback callback) override;
int listeners_count_;
DISALLOW_COPY_AND_ASSIGN(ScreenOrientationListenerAndroid);
};
} // namespace device
#endif // SERVICES_DEVICE_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_