| Index: content/browser/media/capture/video_capture_oracle.h
|
| diff --git a/content/browser/media/capture/video_capture_oracle.h b/content/browser/media/capture/video_capture_oracle.h
|
| index 32e7baff4da470e6d6d5c47f20ac26e766a9036a..8728ace6ef91b651c60afacf06896692c0495bc6 100644
|
| --- a/content/browser/media/capture/video_capture_oracle.h
|
| +++ b/content/browser/media/capture/video_capture_oracle.h
|
| @@ -19,7 +19,6 @@ namespace content {
|
| class CONTENT_EXPORT SmoothEventSampler {
|
| public:
|
| SmoothEventSampler(base::TimeDelta min_capture_period,
|
| - bool events_are_reliable,
|
| int redundant_capture_goal);
|
|
|
| base::TimeDelta min_capture_period() const { return min_capture_period_; }
|
| @@ -46,7 +45,6 @@ class CONTENT_EXPORT SmoothEventSampler {
|
| bool HasUnrecordedEvent() const;
|
|
|
| private:
|
| - const bool events_are_reliable_;
|
| const base::TimeDelta min_capture_period_;
|
| const int redundant_capture_goal_;
|
| const base::TimeDelta token_bucket_capacity_;
|
| @@ -181,8 +179,7 @@ class CONTENT_EXPORT VideoCaptureOracle {
|
| kNumEvents,
|
| };
|
|
|
| - VideoCaptureOracle(base::TimeDelta min_capture_period,
|
| - bool events_are_reliable);
|
| + explicit VideoCaptureOracle(base::TimeDelta min_capture_period);
|
| virtual ~VideoCaptureOracle();
|
|
|
| // Record a event of type |event|, and decide whether the caller should do a
|
|
|