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

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

Issue 2276593002: Support renaming of IndexedDB indexes and object stores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed feedback on tests. 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/indexeddb/IDBIndex.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
index 0854b459811418398273fd2bf8a62795eaf72784..b85942432bdde56976aa5948f727dcdf327e2f4b 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
@@ -55,6 +55,7 @@ public:
// Implement the IDL
const String& name() const { return m_metadata.name; }
+ void setName(const String& name) { return; }
IDBObjectStore* objectStore() const { return m_objectStore.get(); }
ScriptValue keyPath(ScriptState*) const;
bool unique() const { return m_metadata.unique; }

Powered by Google App Engine
This is Rietveld 408576698