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

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

Issue 1738623004: Rename enums/functions that collide in chromium style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-4
Patch Set: get-names-5: rebase-and-stuff Created 4 years, 10 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 07cda83c326dd2ab54ed6733f26d1237eb3ae5a5..f59e2f6e3d498e3a70dd2b65c9bcfde54996353b 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileWriter.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.h
@@ -72,7 +72,7 @@ public:
void seek(long long position, ExceptionState&);
void truncate(long long length, ExceptionState&);
void abort(ExceptionState&);
- ReadyState readyState() const { return m_readyState; }
+ ReadyState getReadyState() const { return m_readyState; }
FileError* error() const { return m_error.get(); }
// WebFileWriterClient

Powered by Google App Engine
This is Rietveld 408576698