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

Side by Side Diff: webkit/support/webkit_support.h

Issue 5222955109842944: Add plumbing for platform based Device Motion testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ 5 #ifndef WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_
6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ 6 #define WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "third_party/WebKit/public/platform/Platform.h" 11 #include "third_party/WebKit/public/platform/Platform.h"
12 #include "third_party/WebKit/public/platform/WebFileSystem.h" 12 #include "third_party/WebKit/public/platform/WebFileSystem.h"
13 #include "third_party/WebKit/public/platform/WebFileSystemType.h" 13 #include "third_party/WebKit/public/platform/WebFileSystemType.h"
14 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" 14 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
15 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" 15 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
16 #include "third_party/WebKit/public/platform/WebURLRequest.h" 16 #include "third_party/WebKit/public/platform/WebURLRequest.h"
17 #include "third_party/WebKit/public/platform/WebVector.h" 17 #include "third_party/WebKit/public/platform/WebVector.h"
18 #include "third_party/WebKit/public/web/WebDevToolsAgentClient.h" 18 #include "third_party/WebKit/public/web/WebDevToolsAgentClient.h"
19 #include "ui/base/keycodes/keyboard_codes.h" 19 #include "ui/base/keycodes/keyboard_codes.h"
20 20
21 namespace base { 21 namespace base {
22 class FilePath; 22 class FilePath;
23 } 23 }
24 24
25 namespace WebKit { 25 namespace WebKit {
26 class Platform; 26 class Platform;
27 class WebApplicationCacheHost; 27 class WebApplicationCacheHost;
28 class WebApplicationCacheHostClient; 28 class WebApplicationCacheHostClient;
29 class WebDeviceMotionData;
29 class WebFileSystemCallbacks; 30 class WebFileSystemCallbacks;
30 class WebFrame; 31 class WebFrame;
31 class WebGamepads; 32 class WebGamepads;
32 class WebLayerTreeView; 33 class WebLayerTreeView;
33 class WebPlugin; 34 class WebPlugin;
34 class WebStorageNamespace; 35 class WebStorageNamespace;
35 class WebString; 36 class WebString;
36 class WebThemeEngine; 37 class WebThemeEngine;
37 class WebURL; 38 class WebURL;
38 class WebURLResponse; 39 class WebURLResponse;
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 #endif 244 #endif
244 245
245 // - Logging 246 // - Logging
246 247
247 void EnableWebCoreLogChannels(const std::string& channels); 248 void EnableWebCoreLogChannels(const std::string& channels);
248 249
249 // - Gamepad 250 // - Gamepad
250 251
251 void SetGamepadData(const WebKit::WebGamepads& pads); 252 void SetGamepadData(const WebKit::WebGamepads& pads);
252 253
254 // - Device Motion
255
256 void SetDeviceMotionData(const WebKit::WebDeviceMotionData& data);
257
253 } // namespace webkit_support 258 } // namespace webkit_support
254 259
255 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_ 260 #endif // WEBKIT_SUPPORT_WEBKIT_SUPPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698