Chromium Code Reviews| Index: media/base/pipeline.h |
| diff --git a/media/base/pipeline.h b/media/base/pipeline.h |
| index 7cf5e7370df4ab795e1dacecefc2861af15080fd..1c91f80848a6afb99a004e26b27b9e8ee5ef8227 100644 |
| --- a/media/base/pipeline.h |
| +++ b/media/base/pipeline.h |
| @@ -34,15 +34,19 @@ struct PipelineStatistics { |
| uint32 video_frames_dropped; |
| }; |
| +enum NetworkEvent { |
| + DOWNLOAD_CONTINUED, |
| + DOWNLOAD_PAUSED, |
| + CAN_PLAY_THROUGH |
| +}; |
| + |
| class FilterCollection; |
| class MEDIA_EXPORT Pipeline : public base::RefCountedThreadSafe<Pipeline> { |
| public: |
| // Callback that executes when a network event occurrs. |
| - // The parameter represents the state of network activity: true if the network |
| - // is downloading data, false if it is not. If the callback never runs, it is |
| - // assumed the network is not downloading data. |
| - typedef base::Callback<void(bool)> NetworkEventCB; |
| + // The parameter specifies the type of event that is being signaled. |
| + typedef base::Callback<void(NetworkEvent)> NetworkEventCB; |
|
acolwell GONE FROM CHROMIUM
2011/11/09 00:50:22
I figured this bool wouldn't last long. ;)
vrk (LEFT CHROMIUM)
2011/11/11 02:51:06
:)
|
| // Initializes pipeline. Pipeline takes ownership of all callbacks passed |
| // into this method. |