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

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

Issue 2042943002: Replace info.This() with info.Holder() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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_utilities.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
index e934c986ad2ad5f3dc454be4b2e97b8469a1cd61..a48586d949a4556c7422676e7edf2c697e74a3f6 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
@@ -200,7 +200,7 @@ CALL_WITH_ARGUMENTS = {
'CurrentWindow': 'currentDOMWindow(info.GetIsolate())',
'EnteredWindow': 'enteredDOMWindow(info.GetIsolate())',
'Document': 'document',
- 'ThisValue': 'ScriptValue(scriptState, info.This())',
+ 'ThisValue': 'ScriptValue(scriptState, info.Holder())',
}
# List because key order matters, as we want arguments in deterministic order
CALL_WITH_VALUES = [

Powered by Google App Engine
This is Rietveld 408576698