| 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 13 matching lines...) Expand all Loading... |
| 24 #include "core/page/PageLifecycleObserver.h" | 24 #include "core/page/PageLifecycleObserver.h" |
| 25 #include "platform/Timer.h" | 25 #include "platform/Timer.h" |
| 26 #include "wtf/PassOwnPtr.h" | 26 #include "wtf/PassOwnPtr.h" |
| 27 #include "wtf/Vector.h" | 27 #include "wtf/Vector.h" |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 class LocalFrame; | 31 class LocalFrame; |
| 32 class Navigator; | 32 class Navigator; |
| 33 | 33 |
| 34 class NavigatorVibration FINAL | 34 class NavigatorVibration final |
| 35 : public NoBaseWillBeGarbageCollectedFinalized<NavigatorVibration> | 35 : public NoBaseWillBeGarbageCollectedFinalized<NavigatorVibration> |
| 36 , public WillBeHeapSupplement<Page> | 36 , public WillBeHeapSupplement<Page> |
| 37 , public PageLifecycleObserver { | 37 , public PageLifecycleObserver { |
| 38 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorVibration); | 38 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorVibration); |
| 39 public: | 39 public: |
| 40 typedef Vector<unsigned> VibrationPattern; | 40 typedef Vector<unsigned> VibrationPattern; |
| 41 | 41 |
| 42 virtual ~NavigatorVibration(); | 42 virtual ~NavigatorVibration(); |
| 43 | 43 |
| 44 bool vibrate(const VibrationPattern&); | 44 bool vibrate(const VibrationPattern&); |
| 45 void cancelVibration(); | 45 void cancelVibration(); |
| 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 | 56 |
| 57 bool isVibrating() const { return m_isVibrating; } | 57 bool isVibrating() const { return m_isVibrating; } |
| 58 | 58 |
| 59 VibrationPattern pattern() const { return m_pattern; } | 59 VibrationPattern pattern() const { return m_pattern; } |
| 60 | 60 |
| 61 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::
trace(visitor); } | 61 virtual void trace(Visitor* visitor) override { WillBeHeapSupplement<Page>::
trace(visitor); } |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 explicit NavigatorVibration(Page&); | 64 explicit NavigatorVibration(Page&); |
| 65 static const char* supplementName(); | 65 static const char* supplementName(); |
| 66 | 66 |
| 67 Timer<NavigatorVibration> m_timerStart; | 67 Timer<NavigatorVibration> m_timerStart; |
| 68 Timer<NavigatorVibration> m_timerStop; | 68 Timer<NavigatorVibration> m_timerStop; |
| 69 bool m_isVibrating; | 69 bool m_isVibrating; |
| 70 VibrationPattern m_pattern; | 70 VibrationPattern m_pattern; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace blink | 73 } // namespace blink |
| 74 | 74 |
| 75 #endif // NavigatorVibration_h | 75 #endif // NavigatorVibration_h |
| OLD | NEW |