Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: third_party/WebKit/Source/core/html/HTMLTrackElement.h

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unintended exception message change Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698