Chromium Code Reviews| 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 e380d58e96fcc5fdc598ff354cbaf5737f0a126e..1b0e6847f9e695c8fc27066c04722cb70685bbae 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLTrackElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLTrackElement.h |
| @@ -46,9 +46,9 @@ public: |
| void setKind(const AtomicString&); |
| enum ReadyState { |
| - NONE = 0, |
| - LOADING = 1, |
| - LOADED = 2, |
| + kNone = 0, |
| + kLoading = 1, |
| + kLoaded = 2, |
| TRACK_ERROR = 3 |
|
tkent
2016/07/27 03:23:47
Remove Reflect=TRACK_ERROR in the IDL, and use kEr
iclelland
2016/07/27 14:07:06
Done, thanks!
|
| }; |
| ReadyState getReadyState(); |