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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp

Issue 2858153004: Rename |m_callback| to |callback_| in IDL bindings. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
index c3136e3406cf8bebe5afcbfae109ebd96f255635..ae63645ba6b47674a10be98dc3d5166623f02f3e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
@@ -25,7 +25,7 @@ void V8ResizeObserverCallback::handleEvent(
return;
ScriptState::Scope scope(script_state_.Get());
- if (m_callback.IsEmpty())
+ if (callback_.IsEmpty())
return;
v8::Local<v8::Value> observer_handle =
@@ -46,7 +46,7 @@ void V8ResizeObserverCallback::handleEvent(
v8::TryCatch exception_catcher(script_state_->GetIsolate());
exception_catcher.SetVerbose(true);
V8ScriptRunner::CallFunction(
- m_callback.NewLocal(isolate), ExecutionContext::From(script_state_.Get()),
+ callback_.NewLocal(isolate), ExecutionContext::From(script_state_.Get()),
this_object, WTF_ARRAY_LENGTH(argv), argv, isolate);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698