54a8a67355bb61f0b965ec897baff5612384b837
[platform/framework/web/crosswalk-tizen.git] / src / runtime / vibration_manager.h
1 // Copyright 2015 Samsung Electronics Co, Ltd. 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 WRT_RUNTIME_VIBRATION_MANAGER_H_
6 #define WRT_RUNTIME_VIBRATION_MANAGER_H_
7
8 // TODO(sngn.lee): this class will move to src/platform/ directory
9 namespace wrt {
10 namespace platform {
11 class VibrationManager {
12  public:
13   static VibrationManager* GetInstance();
14   virtual void Start(int ms) = 0;
15   virtual void Stop() = 0;
16 };
17 }  // namespace platform
18 }  // namespace wrt
19
20 #endif  // WRT_RUNTIME_VIBRATION_MANAGER_H_