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 b5c78ad5d192e20dcf72b47cdd3f9d10cc5f97cf..dcaacff49f97f477afbb34c17cdb9f3fe0353b19 100644 |
| --- a/webkit/support/test_webkit_platform_support.h |
| +++ b/webkit/support/test_webkit_platform_support.h |
| @@ -29,7 +29,8 @@ namespace WebKit { |
| class TestWebKitPlatformSupport : |
| public webkit_glue::WebKitPlatformSupportImpl { |
| public: |
| - explicit TestWebKitPlatformSupport(bool unit_test_mode); |
| + TestWebKitPlatformSupport(bool unit_test_mode, |
| + WebKit::Platform* shadow_platform_support); |
| virtual ~TestWebKitPlatformSupport(); |
| virtual WebKit::WebMimeRegistry* mimeRegistry() OVERRIDE; |
| @@ -123,6 +124,9 @@ class TestWebKitPlatformSupport : |
| WebKit::WebSocketStreamHandle* handle, |
| webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; |
| + virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter( |
| + WebKit::WebMediaStreamCenterClient* client) OVERRIDE; |
| + |
| private: |
| TestShellWebMimeRegistryImpl mime_registry_; |
| MockWebClipboardImpl mock_clipboard_; |
| @@ -138,6 +142,7 @@ class TestWebKitPlatformSupport : |
| WebURLLoaderMockFactory url_loader_factory_; |
| bool unit_test_mode_; |
| WebKit::WebGamepads gamepad_data_; |
| + WebKit::Platform* shadow_platform_support_; |
|
tony
2012/07/11 17:56:42
Nit: I would call this either shadow_platform_dele
Tommy Widenflycht
2012/07/12 13:40:58
Renamed to shadow_platform_delegate_.
On 2012/07/
|
| #if defined(OS_WIN) || defined(OS_MACOSX) |
| WebKit::WebThemeEngine* active_theme_engine_; |