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

Unified Diff: Source/bindings/core/v8/ScriptValue.cpp

Issue 1305523003: [bindings] Make ScriptValue::v8ValueFor(...) a 'const' method. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | « Source/bindings/core/v8/ScriptValue.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptValue.cpp
diff --git a/Source/bindings/core/v8/ScriptValue.cpp b/Source/bindings/core/v8/ScriptValue.cpp
index 94716750ebaa06dda614e3cc44af42ef0b0f1283..0bb8d90f018e1d5b770cf14afaa98effb0f7e532 100644
--- a/Source/bindings/core/v8/ScriptValue.cpp
+++ b/Source/bindings/core/v8/ScriptValue.cpp
@@ -62,7 +62,7 @@ v8::Local<v8::Value> ScriptValue::v8ValueUnsafe() const
return m_value->newLocal(isolate());
}
-v8::Local<v8::Value> ScriptValue::v8ValueFor(ScriptState* targetScriptState)
+v8::Local<v8::Value> ScriptValue::v8ValueFor(ScriptState* targetScriptState) const
{
if (isEmpty())
return v8::Local<v8::Value>();
« no previous file with comments | « Source/bindings/core/v8/ScriptValue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698