| Index: media/base/pipeline.h
|
| diff --git a/media/base/pipeline.h b/media/base/pipeline.h
|
| index c4de1ce1a346c1d22a38ebf42c6f5305bdd51b0a..f0d34b351c8dbc0f6aa8c1f54ec5f709cced469d 100644
|
| --- a/media/base/pipeline.h
|
| +++ b/media/base/pipeline.h
|
| @@ -172,7 +172,7 @@ class MEDIA_EXPORT Pipeline : public DemuxerHost {
|
|
|
| // Return true if loading progress has been made since the last time this
|
| // method was called.
|
| - bool DidLoadingProgress() const;
|
| + bool DidLoadingProgress();
|
|
|
| // Gets the current pipeline statistics.
|
| PipelineStatistics GetStatistics() const;
|
| @@ -335,7 +335,7 @@ class MEDIA_EXPORT Pipeline : public DemuxerHost {
|
|
|
| // True when AddBufferedTimeRange() has been called more recently than
|
| // DidLoadingProgress().
|
| - mutable bool did_loading_progress_;
|
| + bool did_loading_progress_;
|
|
|
| // Current volume level (from 0.0f to 1.0f). This value is set immediately
|
| // via SetVolume() and a task is dispatched on the task runner to notify the
|
|
|