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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.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/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp b/third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp
index 3f46b17c8d77e77dbac6b6ce6ecd1979bf5a6065..f5642578c2b7f9f1a13343742e1ba264c81968ea 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp
@@ -50,9 +50,9 @@ bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction,
ScriptState::Scope scope(m_scriptState.get());
v8::Local<v8::Value> transactionHandle =
- toV8(transaction, m_scriptState->context()->Global(), isolate);
+ ToV8(transaction, m_scriptState->context()->Global(), isolate);
v8::Local<v8::Value> errorHandle =
- toV8(error, m_scriptState->context()->Global(), isolate);
+ ToV8(error, m_scriptState->context()->Global(), isolate);
ASSERT(transactionHandle->IsObject());
v8::Local<v8::Value> argv[] = {transactionHandle, errorHandle};

Powered by Google App Engine
This is Rietveld 408576698