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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBRequest.h

Issue 2572603002: ABANDONED CL: Rename readyState() to getReadyState(). (Closed)
Patch Set: Created 4 years 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/indexeddb/IDBRequest.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
index 64e6ce589faecd6c18f33cc4c013ca1b0dd62c50..b2afb536b4c1ec3f0ccd069bd4091c8bd349877f 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
@@ -82,7 +82,7 @@ class MODULES_EXPORT IDBRequest : public EventTargetWithInlineData,
// Defined in the IDL
enum ReadyState { PENDING = 1, DONE = 2, EarlyDeath = 3 };
- const String& readyState() const;
+ const String& getReadyState() const;
Łukasz Anforowicz 2016/12/12 22:43:49 After naive rename this would conflict with IDBReq
// Returns a new WebIDBCallbacks for this request. Must only be called once.
std::unique_ptr<WebIDBCallbacks> createWebCallbacks();

Powered by Google App Engine
This is Rietveld 408576698