summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/modules/filesystem/FileWriter.idl
diff options
context:
space:
mode:
authordanakj <danakj@chromium.org>2016-02-25 20:44:01 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-26 04:45:08 +0000
commit846b7985fcb118a36f9b44679bc02488f3019d94 (patch)
tree85bed918cc6dc036d9bbd75e9cb3ea0e9a031b0b /third_party/WebKit/Source/modules/filesystem/FileWriter.idl
parent19609f7bcdf7fc5c40bfe46f691e06c575ed1929 (diff)
downloadchromium_src-846b7985fcb118a36f9b44679bc02488f3019d94.zip
chromium_src-846b7985fcb118a36f9b44679bc02488f3019d94.tar.gz
chromium_src-846b7985fcb118a36f9b44679bc02488f3019d94.tar.bz2
Rename enums/functions that collide in chromium style.
This fixes cases in: core/editing/ core/events/ core/fetch/ core/fileapi/ core/frame/ TBR=esprehn, Nico, sievers, haraken R=esprehn@chromium.org, pdr BUG=582312 Review URL: https://codereview.chromium.org/1738623004 Cr-Commit-Position: refs/heads/master@{#377812}
Diffstat (limited to 'third_party/WebKit/Source/modules/filesystem/FileWriter.idl')
-rw-r--r--third_party/WebKit/Source/modules/filesystem/FileWriter.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/Source/modules/filesystem/FileWriter.idl b/third_party/WebKit/Source/modules/filesystem/FileWriter.idl
index a58d4b7..0e07baf 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileWriter.idl
+++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.idl
@@ -38,7 +38,7 @@
const unsigned short INIT = 0;
const unsigned short WRITING = 1;
const unsigned short DONE = 2;
- readonly attribute unsigned short readyState;
+ [ImplementedAs=getReadyState] readonly attribute unsigned short readyState;
// async write/modify methods
[RaisesException] void write(Blob data);