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

Unified Diff: third_party/WebKit/Source/bindings/scripts/v8_callback_interface.py

Issue 2857853007: Rename |m_scriptState| to |script_state_| in IDL bindings. (Closed)
Patch Set: Created 3 years, 8 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/scripts/v8_callback_interface.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_callback_interface.py b/third_party/WebKit/Source/bindings/scripts/v8_callback_interface.py
index 6a5dd366605f5bba68939f8afea5e2919f7814ec..00b12a25462ab37a18b5b3f9a5339d25c0131c8f 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_callback_interface.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_callback_interface.py
@@ -138,8 +138,8 @@ def arguments_context(arguments, call_with_this_handle):
return {
'handle': '%sHandle' % argument.name,
'cpp_value_to_v8_value': argument.idl_type.cpp_value_to_v8_value(
- argument.name, isolate='m_scriptState->GetIsolate()',
- creation_context='m_scriptState->GetContext()->Global()'),
+ argument.name, isolate='script_state_->GetIsolate()',
+ creation_context='script_state_->GetContext()->Global()'),
}
argument_declarations = ['ScriptValue thisValue'] if call_with_this_handle else []

Powered by Google App Engine
This is Rietveld 408576698