| OLD | NEW |
| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebTestInterfaces_h | 31 #ifndef WebTestInterfaces_h |
| 32 #define WebTestInterfaces_h | 32 #define WebTestInterfaces_h |
| 33 | 33 |
| 34 #include "WebTestCommon.h" | 34 #include "WebTestCommon.h" |
| 35 #include <memory> | 35 #include <memory> |
| 36 | 36 |
| 37 namespace WebKit { | 37 namespace WebKit { |
| 38 class WebAudioDevice; | 38 class WebAudioDevice; |
| 39 class WebCrypto; | |
| 40 class WebFrame; | 39 class WebFrame; |
| 41 class WebMediaStreamCenter; | 40 class WebMediaStreamCenter; |
| 42 class WebMediaStreamCenterClient; | 41 class WebMediaStreamCenterClient; |
| 43 class WebMIDIAccessor; | 42 class WebMIDIAccessor; |
| 44 class WebMIDIAccessorClient; | 43 class WebMIDIAccessorClient; |
| 45 class WebRTCPeerConnectionHandler; | 44 class WebRTCPeerConnectionHandler; |
| 46 class WebRTCPeerConnectionHandlerClient; | 45 class WebRTCPeerConnectionHandlerClient; |
| 47 class WebThemeEngine; | 46 class WebThemeEngine; |
| 48 class WebURL; | 47 class WebURL; |
| 49 class WebView; | 48 class WebView; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 71 WebTestRunner* testRunner(); | 70 WebTestRunner* testRunner(); |
| 72 WebKit::WebThemeEngine* themeEngine(); | 71 WebKit::WebThemeEngine* themeEngine(); |
| 73 | 72 |
| 74 WebKit::WebMediaStreamCenter* createMediaStreamCenter(WebKit::WebMediaStream
CenterClient*); | 73 WebKit::WebMediaStreamCenter* createMediaStreamCenter(WebKit::WebMediaStream
CenterClient*); |
| 75 WebKit::WebRTCPeerConnectionHandler* createWebRTCPeerConnectionHandler(WebKi
t::WebRTCPeerConnectionHandlerClient*); | 74 WebKit::WebRTCPeerConnectionHandler* createWebRTCPeerConnectionHandler(WebKi
t::WebRTCPeerConnectionHandlerClient*); |
| 76 | 75 |
| 77 WebKit::WebMIDIAccessor* createMIDIAccessor(WebKit::WebMIDIAccessorClient*); | 76 WebKit::WebMIDIAccessor* createMIDIAccessor(WebKit::WebMIDIAccessorClient*); |
| 78 | 77 |
| 79 WebKit::WebAudioDevice* createAudioDevice(double sampleRate); | 78 WebKit::WebAudioDevice* createAudioDevice(double sampleRate); |
| 80 | 79 |
| 81 WebKit::WebCrypto* crypto(); | |
| 82 | |
| 83 #if WEBTESTRUNNER_IMPLEMENTATION | 80 #if WEBTESTRUNNER_IMPLEMENTATION |
| 84 TestInterfaces* testInterfaces(); | 81 TestInterfaces* testInterfaces(); |
| 85 #endif | 82 #endif |
| 86 | 83 |
| 87 private: | 84 private: |
| 88 std::auto_ptr<TestInterfaces> m_interfaces; | 85 std::auto_ptr<TestInterfaces> m_interfaces; |
| 89 }; | 86 }; |
| 90 | 87 |
| 91 } | 88 } |
| 92 | 89 |
| 93 #endif // WebTestInterfaces_h | 90 #endif // WebTestInterfaces_h |
| OLD | NEW |