Title: [115158] trunk/Source/WebCore
Revision
115158
Author
ad...@chromium.org
Date
2012-04-24 19:05:46 -0700 (Tue, 24 Apr 2012)

Log Message

Remove unused undefined() method from ScriptValue
https://bugs.webkit.org/show_bug.cgi?id=84751

Reviewed by Kentaro Hara.

* bindings/js/ScriptValue.h:
(ScriptValue):
* bindings/v8/ScriptValue.h:
(ScriptValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (115157 => 115158)


--- trunk/Source/WebCore/ChangeLog	2012-04-25 01:59:08 UTC (rev 115157)
+++ trunk/Source/WebCore/ChangeLog	2012-04-25 02:05:46 UTC (rev 115158)
@@ -1,3 +1,15 @@
+2012-04-24  Adam Klein  <ad...@chromium.org>
+
+        Remove unused undefined() method from ScriptValue
+        https://bugs.webkit.org/show_bug.cgi?id=84751
+
+        Reviewed by Kentaro Hara.
+
+        * bindings/js/ScriptValue.h:
+        (ScriptValue):
+        * bindings/v8/ScriptValue.h:
+        (ScriptValue):
+
 2012-04-24  Yong Li  <y...@rim.com>
 
         ASSERT failure in RenderLayer::computeRepaintRects

Modified: trunk/Source/WebCore/bindings/js/ScriptValue.h (115157 => 115158)


--- trunk/Source/WebCore/bindings/js/ScriptValue.h	2012-04-25 01:59:08 UTC (rev 115157)
+++ trunk/Source/WebCore/bindings/js/ScriptValue.h	2012-04-25 02:05:46 UTC (rev 115158)
@@ -65,8 +65,6 @@
     PassRefPtr<SerializedScriptValue> serialize(ScriptState*, SerializationErrorMode = Throwing);
     static ScriptValue deserialize(ScriptState*, SerializedScriptValue*, SerializationErrorMode = Throwing);
 
-    static ScriptValue undefined();
-
 #if ENABLE(INSPECTOR)
     PassRefPtr<InspectorValue> toInspectorValue(ScriptState*) const;
 #endif

Modified: trunk/Source/WebCore/bindings/v8/ScriptValue.h (115157 => 115158)


--- trunk/Source/WebCore/bindings/v8/ScriptValue.h	2012-04-25 01:59:08 UTC (rev 115157)
+++ trunk/Source/WebCore/bindings/v8/ScriptValue.h	2012-04-25 02:05:46 UTC (rev 115158)
@@ -133,8 +133,6 @@
     PassRefPtr<SerializedScriptValue> serialize(ScriptState*);
     static ScriptValue deserialize(ScriptState*, SerializedScriptValue*);
 
-    static ScriptValue undefined() { return ScriptValue(v8::Undefined()); }
-
     void clear()
     {
         if (m_value.IsEmpty())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to