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

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

Issue 1310643004: [bindings] Cleanup unused method v8ValueUnsafe from ScriptValue (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 0bb8d90f018e1d5b770cf14afaa98effb0f7e532..87dae7d41b17f99a9053b1adf9a73c438138eae3 100644
--- a/Source/bindings/core/v8/ScriptValue.cpp
+++ b/Source/bindings/core/v8/ScriptValue.cpp
@@ -55,13 +55,6 @@ v8::Local<v8::Value> ScriptValue::v8Value() const
return m_value->newLocal(isolate());
}
-v8::Local<v8::Value> ScriptValue::v8ValueUnsafe() const
-{
- if (isEmpty())
- return v8::Local<v8::Value>();
- return m_value->newLocal(isolate());
-}
-
v8::Local<v8::Value> ScriptValue::v8ValueFor(ScriptState* targetScriptState) const
{
if (isEmpty())
« 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