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

Side by Side Diff: public/platform/Platform.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: 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 22 matching lines...) Expand all
33 33
34 #ifdef WIN32 34 #ifdef WIN32
35 #include <windows.h> 35 #include <windows.h>
36 #endif 36 #endif
37 37
38 #include "WebAudioDevice.h" 38 #include "WebAudioDevice.h"
39 #include "WebBatteryStatusListener.h" 39 #include "WebBatteryStatusListener.h"
40 #include "WebCommon.h" 40 #include "WebCommon.h"
41 #include "WebData.h" 41 #include "WebData.h"
42 #include "WebDeviceLightListener.h" 42 #include "WebDeviceLightListener.h"
43 #include "WebDeviceMotionListener.h"
44 #include "WebDeviceOrientationListener.h"
45 #include "WebGamepadListener.h" 43 #include "WebGamepadListener.h"
46 #include "WebGamepads.h" 44 #include "WebGamepads.h"
47 #include "WebGestureDevice.h" 45 #include "WebGestureDevice.h"
48 #include "WebGraphicsContext3D.h" 46 #include "WebGraphicsContext3D.h"
49 #include "WebLocalizedString.h" 47 #include "WebLocalizedString.h"
50 #include "WebPlatformEventType.h" 48 #include "WebPlatformEventType.h"
51 #include "WebSize.h" 49 #include "WebSize.h"
52 #include "WebSpeechSynthesizer.h" 50 #include "WebSpeechSynthesizer.h"
53 #include "WebStorageQuotaCallbacks.h" 51 #include "WebStorageQuotaCallbacks.h"
54 #include "WebStorageQuotaType.h" 52 #include "WebStorageQuotaType.h"
55 #include "WebString.h" 53 #include "WebString.h"
56 #include "WebURLError.h" 54 #include "WebURLError.h"
57 #include "WebVector.h" 55 #include "WebVector.h"
56 #include "public/platform/modules/device_orientation/WebDeviceMotionListener.h"
timvolodine 2015/04/23 14:48:47 could you provide some pointers to similar efforts
riju_ 2015/04/24 12:12:05 looks like we don't need those header files at all
57 #include "public/platform/modules/device_orientation/WebDeviceOrientationListene r.h"
58 58
59 #include <vector> 59 #include <vector>
60 60
61 class GrContext; 61 class GrContext;
62 62
63 namespace blink { 63 namespace blink {
64 64
65 class WebAudioBus; 65 class WebAudioBus;
66 class WebBlobRegistry; 66 class WebBlobRegistry;
67 class WebBluetooth; 67 class WebBluetooth;
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 protected: 686 protected:
687 BLINK_PLATFORM_EXPORT Platform(); 687 BLINK_PLATFORM_EXPORT Platform();
688 virtual ~Platform() { } 688 virtual ~Platform() { }
689 689
690 WebThread* m_mainThread; 690 WebThread* m_mainThread;
691 }; 691 };
692 692
693 } // namespace blink 693 } // namespace blink
694 694
695 #endif 695 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698