| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Samsung Electronics | 2 * Copyright (C) 2012 Samsung Electronics |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 void timerStartFired(Timer<NavigatorVibration>*); | 46 void timerStartFired(Timer<NavigatorVibration>*); |
| 47 void timerStopFired(Timer<NavigatorVibration>*); | 47 void timerStopFired(Timer<NavigatorVibration>*); |
| 48 | 48 |
| 49 // Inherited from PageLifecycleObserver | 49 // Inherited from PageLifecycleObserver |
| 50 virtual void pageVisibilityChanged() override; | 50 virtual void pageVisibilityChanged() override; |
| 51 virtual void didCommitLoad(LocalFrame*) override; | 51 virtual void didCommitLoad(LocalFrame*) override; |
| 52 | 52 |
| 53 static bool vibrate(Navigator&, unsigned time); | 53 static bool vibrate(Navigator&, unsigned time); |
| 54 static bool vibrate(Navigator&, const VibrationPattern&); | 54 static bool vibrate(Navigator&, const VibrationPattern&); |
| 55 static NavigatorVibration& from(Page&); | 55 static NavigatorVibration& from(Page&); |
| 56 static VibrationPattern verifyVibrationPattern(const VibrationPattern&); |
| 56 | 57 |
| 57 bool isVibrating() const { return m_isVibrating; } | 58 bool isVibrating() const { return m_isVibrating; } |
| 58 | 59 |
| 59 VibrationPattern pattern() const { return m_pattern; } | 60 VibrationPattern pattern() const { return m_pattern; } |
| 60 | 61 |
| 61 DECLARE_VIRTUAL_TRACE(); | 62 DECLARE_VIRTUAL_TRACE(); |
| 62 | 63 |
| 63 private: | 64 private: |
| 64 explicit NavigatorVibration(Page&); | 65 explicit NavigatorVibration(Page&); |
| 65 static const char* supplementName(); | 66 static const char* supplementName(); |
| 66 | 67 |
| 67 Timer<NavigatorVibration> m_timerStart; | 68 Timer<NavigatorVibration> m_timerStart; |
| 68 Timer<NavigatorVibration> m_timerStop; | 69 Timer<NavigatorVibration> m_timerStop; |
| 69 bool m_isVibrating; | 70 bool m_isVibrating; |
| 70 VibrationPattern m_pattern; | 71 VibrationPattern m_pattern; |
| 71 }; | 72 }; |
| 72 | 73 |
| 73 } // namespace blink | 74 } // namespace blink |
| 74 | 75 |
| 75 #endif // NavigatorVibration_h | 76 #endif // NavigatorVibration_h |
| OLD | NEW |