Chromium Code Reviews| 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&); |