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

Unified Diff: content/test/webrtc_audio_device_test.cc

Issue 10830072: Browser Plugin: New Implementation (Renderer Side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added lots more comments to messages and public members of BrowserPlugin Created 8 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 side-by-side diff with in-line comments
Download patch
Index: content/test/webrtc_audio_device_test.cc
diff --git a/content/test/webrtc_audio_device_test.cc b/content/test/webrtc_audio_device_test.cc
index 833118f84dc0c81f0a29efbff9cc6560fd22d3e5..6f64c6ae8cc0b9e5d874aaa0c7cc9f87e8edf0f5 100644
--- a/content/test/webrtc_audio_device_test.cc
+++ b/content/test/webrtc_audio_device_test.cc
@@ -62,6 +62,8 @@ class WebRTCMockRenderProcess : public RenderProcess {
virtual void AddBindings(int bindings) OVERRIDE {}
virtual int GetEnabledBindings() const { return 0; }
virtual bool HasInitializedMediaLibrary() const { return false; }
+ virtual TransportDIB* CreateTransportDIB(size_t size) { return NULL; }
+ virtual void FreeTransportDIB(TransportDIB*) {}
private:
DISALLOW_COPY_AND_ASSIGN(WebRTCMockRenderProcess);

Powered by Google App Engine
This is Rietveld 408576698