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

Side by Side Diff: content/renderer/media/local_video_capture.h

Issue 11339014: Move content\browser\renderer_host\media to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_
6 #define CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ 6 #define CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/media/video_capture.h" 9 #include "content/common/media/video_capture.h"
10 #include "media/video/capture/video_capture.h" 10 #include "media/video/capture/video_capture.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 friend class LocalVideoCaptureTest; 61 friend class LocalVideoCaptureTest;
62 62
63 media::VideoCaptureSessionId video_stream_id_; 63 media::VideoCaptureSessionId video_stream_id_;
64 scoped_refptr<VideoCaptureImplManager> vc_manager_; 64 scoped_refptr<VideoCaptureImplManager> vc_manager_;
65 media::VideoCaptureCapability capability_; 65 media::VideoCaptureCapability capability_;
66 base::Closure error_cb_; 66 base::Closure error_cb_;
67 RepaintCB repaint_cb_; 67 RepaintCB repaint_cb_;
68 media::VideoCapture* capture_engine_; 68 media::VideoCapture* capture_engine_;
69 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; 69 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
70 scoped_ptr<media::VideoCaptureHandlerProxy> handler_proxy_; 70 scoped_ptr<media::VideoCaptureHandlerProxy> handler_proxy_;
71 video_capture::State state_; 71 VideoCaptureState state_;
72 72
73 DISALLOW_COPY_AND_ASSIGN(LocalVideoCapture); 73 DISALLOW_COPY_AND_ASSIGN(LocalVideoCapture);
74 }; 74 };
75 75
76 } // namespace content 76 } // namespace content
77 77
78 #endif // CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_ 78 #endif // CONTENT_RENDERER_MEDIA_LOCAL_VIDEO_CAPTURE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698