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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileWriter.h

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/modules/filesystem/FileWriter.h
diff --git a/third_party/WebKit/Source/modules/filesystem/FileWriter.h b/third_party/WebKit/Source/modules/filesystem/FileWriter.h
index 128d926f7a5c44737db9cbf7c031ed892486d86a..ca4c1c10731dc4af15bab4973fd1e7c22109c42d 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileWriter.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.h
@@ -59,9 +59,9 @@ public:
~FileWriter() override;
enum ReadyState {
- INIT = 0,
- WRITING = 1,
- DONE = 2
+ kInit = 0,
+ kWriting = 1,
+ kDone = 2
};
void write(Blob*, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698