| Index: content/browser/renderer_host/media/video_capture_device_impl.h
|
| diff --git a/content/browser/renderer_host/media/video_capture_device_impl.h b/content/browser/renderer_host/media/video_capture_device_impl.h
|
| index 56bf1e0eac8dbd564f489de78df3146b33c01030..87d4c1930a260bf103f116e60446902fb764f2d4 100644
|
| --- a/content/browser/renderer_host/media/video_capture_device_impl.h
|
| +++ b/content/browser/renderer_host/media/video_capture_device_impl.h
|
| @@ -71,7 +71,7 @@ class ThreadSafeCaptureOracle
|
| void Stop();
|
|
|
| // Signal an error to the client.
|
| - void ReportError();
|
| + void ReportError(const std::string& reason);
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<ThreadSafeCaptureOracle>;
|
| @@ -165,7 +165,7 @@ class CONTENT_EXPORT VideoCaptureDeviceImpl
|
| void CaptureStarted(bool success);
|
|
|
| // Stops capturing and notifies client_ of an error state.
|
| - void Error();
|
| + void Error(const std::string& reason);
|
|
|
| // Tracks that all activity occurs on the media stream manager's thread.
|
| base::ThreadChecker thread_checker_;
|
|
|