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

Unified Diff: content/renderer/render_thread_impl.h

Issue 960103002: Rename VideoCaptureImplManager to VideoCaptureService Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix some nits Created 5 years, 10 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/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 26de62bfa6b56b41a04dbbc91116e43eb5d75f63..2fdc5d92a6d7470b470b6e8267c54d92d6d17f6a 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -104,7 +104,7 @@ class RendererScheduler;
class ResourceDispatchThrottler;
class ResourceSchedulingFilter;
class V8SamplingProfiler;
-class VideoCaptureImplManager;
+class VideoCaptureService;
class WebGraphicsContext3DCommandBufferImpl;
class WebRTCIdentityService;
@@ -300,7 +300,7 @@ class CONTENT_EXPORT RenderThreadImpl
}
#endif
- VideoCaptureImplManager* video_capture_impl_manager() const {
+ VideoCaptureService* video_capture_service() const {
return vc_manager_.get();
}
@@ -508,7 +508,7 @@ class CONTENT_EXPORT RenderThreadImpl
#endif
// Used on the render thread.
- scoped_ptr<VideoCaptureImplManager> vc_manager_;
+ scoped_ptr<VideoCaptureService> vc_manager_;
// Used for communicating registering AEC dump consumers with the browser and
// receving AEC dump file handles when AEC dump is enabled. An AEC dump is

Powered by Google App Engine
This is Rietveld 408576698