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

Unified Diff: content/browser/renderer_host/media/media_stream_manager.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: 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/browser/renderer_host/media/media_stream_manager.h
===================================================================
--- content/browser/renderer_host/media/media_stream_manager.h (revision 109546)
+++ content/browser/renderer_host/media/media_stream_manager.h (working copy)
@@ -89,26 +89,8 @@
private:
// Contains all data needed to keep track of requests.
- struct DeviceRequest {
- DeviceRequest();
- DeviceRequest(MediaStreamRequester* requester,
- const StreamOptions& request_options);
- ~DeviceRequest();
- enum RequestState {
- kNotRequested = 0,
- kRequested,
- kOpening,
- kDone,
- kError
- };
+ struct DeviceRequest;
- MediaStreamRequester* requester;
- StreamOptions options;
- std::vector<RequestState> state;
- StreamDeviceInfoArray audio_devices;
- StreamDeviceInfoArray video_devices;
- };
-
// Helpers.
bool RequestDone(const MediaStreamManager::DeviceRequest& request) const;
MediaStreamProvider* GetDeviceManager(MediaStreamType stream_type);

Powered by Google App Engine
This is Rietveld 408576698