Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Side by Side Diff: Source/modules/device_orientation/DeviceOrientationDispatcher.h

Issue 1079983003: Move WebDevice{Motion|Orientation} related Blink API headers into their own (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: git cl upload --no-find-copies Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef DeviceOrientationDispatcher_h 31 #ifndef DeviceOrientationDispatcher_h
32 #define DeviceOrientationDispatcher_h 32 #define DeviceOrientationDispatcher_h
33 33
34 #include "core/frame/PlatformEventDispatcher.h" 34 #include "core/frame/PlatformEventDispatcher.h"
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "public/platform/WebDeviceOrientationListener.h" 36 #include "public/platform/modules/device_orientation/WebDeviceOrientationListene r.h"
37 #include "wtf/RefPtr.h" 37 #include "wtf/RefPtr.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class DeviceOrientationData; 41 class DeviceOrientationData;
42 class WebDeviceOrientationData; 42 class WebDeviceOrientationData;
43 43
44 // This class listens to device orientation data and notifies all registered con trollers. 44 // This class listens to device orientation data and notifies all registered con trollers.
45 class DeviceOrientationDispatcher final : public GarbageCollectedFinalized<Devic eOrientationDispatcher>, public PlatformEventDispatcher, public WebDeviceOrienta tionListener { 45 class DeviceOrientationDispatcher final : public GarbageCollectedFinalized<Devic eOrientationDispatcher>, public PlatformEventDispatcher, public WebDeviceOrienta tionListener {
46 USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationDispatcher); 46 USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationDispatcher);
(...skipping 16 matching lines...) Expand all
63 // Inherited from PlatformEventDispatcher. 63 // Inherited from PlatformEventDispatcher.
64 virtual void startListening() override; 64 virtual void startListening() override;
65 virtual void stopListening() override; 65 virtual void stopListening() override;
66 66
67 Member<DeviceOrientationData> m_lastDeviceOrientationData; 67 Member<DeviceOrientationData> m_lastDeviceOrientationData;
68 }; 68 };
69 69
70 } // namespace blink 70 } // namespace blink
71 71
72 #endif // DeviceOrientationDispatcher_h 72 #endif // DeviceOrientationDispatcher_h
OLDNEW
« no previous file with comments | « Source/modules/device_orientation/DeviceOrientationData.cpp ('k') | Source/platform/exported/WebDeviceMotionData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698