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

Unified Diff: content/renderer/media/media_stream_dispatcher.h

Issue 8525018: switch to DVLOG from VLOG, and move struct definition to cc file (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review Created 9 years, 1 month 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/renderer/media/media_stream_dispatcher.h
===================================================================
--- content/renderer/media/media_stream_dispatcher.h (revision 109546)
+++ content/renderer/media/media_stream_dispatcher.h (working copy)
@@ -52,28 +52,11 @@
FRIEND_TEST_ALL_PREFIXES(MediaStreamDispatcherTest, Basic);
FRIEND_TEST_ALL_PREFIXES(MediaStreamDispatcherTest, TestFailure);
- struct Request {
- Request(MediaStreamDispatcherEventHandler* handler,
- int request_id,
- int ipc_request)
- : handler(handler),
- request_id(request_id),
- ipc_request(ipc_request) {
- }
- MediaStreamDispatcherEventHandler* handler;
- int request_id;
- int ipc_request;
- };
+ struct Request;
// Private class for keeping track of opened devices and who have
// opened it.
- struct Stream {
- Stream();
- ~Stream();
- MediaStreamDispatcherEventHandler* handler;
- media_stream::StreamDeviceInfoArray audio_array;
- media_stream::StreamDeviceInfoArray video_array;
- };
+ struct Stream;
// Messages from the browser.
virtual bool OnMessageReceived(const IPC::Message& message);
« no previous file with comments | « content/browser/renderer_host/media/media_stream_manager.cc ('k') | content/renderer/media/media_stream_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698