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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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/IDBCursor.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp
index 90c16221818a606500c999ebd775dda4a4b54c54..359333ac4ae733997acbfc490e9009aedd8bfd6c 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp
@@ -92,10 +92,11 @@ v8::Local<v8::Object> IDBCursor::associateWithWrapper(
v8::Local<v8::Object> wrapper) {
wrapper =
ScriptWrappable::associateWithWrapper(isolate, wrapperType, wrapper);
- if (!wrapper.IsEmpty())
+ if (!wrapper.IsEmpty()) {
V8HiddenValue::setHiddenValue(ScriptState::current(isolate), wrapper,
V8HiddenValue::idbCursorRequest(isolate),
- toV8(m_request.get(), wrapper, isolate));
+ ToV8(m_request.get(), wrapper, isolate));
+ }
return wrapper;
}

Powered by Google App Engine
This is Rietveld 408576698