| Index: third_party/WebKit/Source/core/html/HTMLTrackElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTrackElement.h b/third_party/WebKit/Source/core/html/HTMLTrackElement.h
|
| index 5c25826366644d9987cf04d4cc298260aa798589..5874b25998217c115087cc49521db4e58d070698 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTrackElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTrackElement.h
|
| @@ -46,10 +46,10 @@ public:
|
| void setKind(const AtomicString&);
|
|
|
| enum ReadyState {
|
| - NONE = 0,
|
| - LOADING = 1,
|
| - LOADED = 2,
|
| - TRACK_ERROR = 3
|
| + kNone = 0,
|
| + kLoading = 1,
|
| + kLoaded = 2,
|
| + kError = 3
|
| };
|
| ReadyState getReadyState();
|
| void scheduleLoad();
|
|
|