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

Unified Diff: content/shell/test_runner/web_test_interfaces.h

Issue 2859553002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/test_runner/test_plugin.cc ('k') | content/shell/test_runner/web_test_interfaces.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/test_runner/web_test_interfaces.h
diff --git a/content/shell/test_runner/web_test_interfaces.h b/content/shell/test_runner/web_test_interfaces.h
index f6f7975ed5f0e19d8e22118182bc005740b54b9e..64ce164acfdfb0a56e3c54ae77e2e78e024dc612 100644
--- a/content/shell/test_runner/web_test_interfaces.h
+++ b/content/shell/test_runner/web_test_interfaces.h
@@ -53,18 +53,16 @@
WebTestRunner* TestRunner();
blink::WebThemeEngine* ThemeEngine();
- std::unique_ptr<blink::WebMediaStreamCenter> CreateMediaStreamCenter(
+ blink::WebMediaStreamCenter* CreateMediaStreamCenter(
blink::WebMediaStreamCenterClient* client);
- std::unique_ptr<blink::WebRTCPeerConnectionHandler>
- CreateWebRTCPeerConnectionHandler(
+ blink::WebRTCPeerConnectionHandler* CreateWebRTCPeerConnectionHandler(
blink::WebRTCPeerConnectionHandlerClient* client);
- std::unique_ptr<blink::WebMIDIAccessor> CreateMIDIAccessor(
+ blink::WebMIDIAccessor* CreateMIDIAccessor(
blink::WebMIDIAccessorClient* client);
- std::unique_ptr<blink::WebAudioDevice> CreateAudioDevice(
- double sample_rate,
- int frames_per_buffer);
+ blink::WebAudioDevice* CreateAudioDevice(double sample_rate,
+ int frames_per_buffer);
TestInterfaces* GetTestInterfaces();
« no previous file with comments | « content/shell/test_runner/test_plugin.cc ('k') | content/shell/test_runner/web_test_interfaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698