Chromium Code Reviews| Index: webkit/support/test_webkit_platform_support.h |
| diff --git a/webkit/support/test_webkit_platform_support.h b/webkit/support/test_webkit_platform_support.h |
| index b774afbf0545476ed001399efe572632f6ec3eb9..54b92ad53be1a36ebb47e051b33614f8038200af 100644 |
| --- a/webkit/support/test_webkit_platform_support.h |
| +++ b/webkit/support/test_webkit_platform_support.h |
| @@ -103,6 +103,9 @@ class TestWebKitPlatformSupport : |
| unsigned numberOfChannels, double sampleRate, |
| WebKit::WebAudioDevice::RenderCallback*); |
| + virtual void sampleGamepads(WebKit::WebGamepads&); |
| + void setGamepadData(const WebKit::WebGamepads&); |
|
tony
2011/11/18 20:12:37
Nit: Chrome style is to name all parameters.
scottmg
2011/11/18 21:20:56
Done.
|
| + |
| private: |
| TestShellWebMimeRegistryImpl mime_registry_; |
| MockWebClipboardImpl mock_clipboard_; |
| @@ -116,6 +119,7 @@ class TestWebKitPlatformSupport : |
| ScopedTempDir file_system_root_; |
| WebURLLoaderMockFactory url_loader_factory_; |
| bool unit_test_mode_; |
| + WebKit::WebGamepads gamepad_data_; |
|
tony
2011/11/18 20:12:37
Can we add the #include for the file that defines
scottmg
2011/11/18 21:20:56
Fwd decl OK instead in this case?
|
| #if defined(OS_WIN) || defined(OS_MACOSX) |
| WebKit::WebThemeEngine* active_theme_engine_; |