Index: third_party/WebKit/Source/bindings/core/v8/ScriptValue.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptValue.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptValue.cpp |
index 5cd40d36382ac2ee49835a5fd6bd86752a4f0b25..e41d00f279229886ac6f47469c1e7572e3647fb3 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValue.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValue.cpp |
@@ -45,7 +45,7 @@ v8::Local<v8::Value> ScriptValue::V8Value() const { |
// This is a check to validate that you don't return a ScriptValue to a world |
// different from the world that created the ScriptValue. |
// Probably this could be: |
- // if (&m_scriptState->world() == &DOMWrapperWorld::current(isolate())) |
+ // if (&script_state_->world() == &DOMWrapperWorld::current(isolate())) |
// return v8::Local<v8::Value>(); |
// instead of triggering RELEASE_ASSERT. |
CHECK_EQ(&script_state_->World(), &DOMWrapperWorld::Current(GetIsolate())); |