Title: [134185] trunk/Source/WebCore
Revision
134185
Author
[email protected]
Date
2012-11-11 20:29:32 -0800 (Sun, 11 Nov 2012)

Log Message

[V8] V8Console::memoryAttrGetter() needs not to be custom
https://bugs.webkit.org/show_bug.cgi?id=101873

Reviewed by Adam Barth.

No tests. No change in behavior.

* bindings/v8/custom/V8ConsoleCustom.cpp:
(WebCore):
* page/Console.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134184 => 134185)


--- trunk/Source/WebCore/ChangeLog	2012-11-12 03:40:03 UTC (rev 134184)
+++ trunk/Source/WebCore/ChangeLog	2012-11-12 04:29:32 UTC (rev 134185)
@@ -1,3 +1,16 @@
+2012-11-11  Kentaro Hara  <[email protected]>
+
+        [V8] V8Console::memoryAttrGetter() needs not to be custom
+        https://bugs.webkit.org/show_bug.cgi?id=101873
+
+        Reviewed by Adam Barth.
+
+        No tests. No change in behavior.
+
+        * bindings/v8/custom/V8ConsoleCustom.cpp:
+        (WebCore):
+        * page/Console.idl:
+
 2012-11-11  Shinya Kawanaka  <[email protected]>
 
         [Shadow] ElementShadow should have RuleFeatureSet for select attribute selectors.

Modified: trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp (134184 => 134185)


--- trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp	2012-11-12 03:40:03 UTC (rev 134184)
+++ trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp	2012-11-12 04:29:32 UTC (rev 134185)
@@ -88,11 +88,4 @@
 }
 #endif
 
-v8::Handle<v8::Value> V8Console::memoryAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
-{
-    INC_STATS("DOM.Console.memoryAccessorGetter");
-    Console* imp = V8Console::toNative(info.Holder());
-    return toV8(imp->memory(), info.Holder(), info.GetIsolate());
-}
-
 } // namespace WebCore

Modified: trunk/Source/WebCore/page/Console.idl (134184 => 134185)


--- trunk/Source/WebCore/page/Console.idl	2012-11-12 03:40:03 UTC (rev 134184)
+++ trunk/Source/WebCore/page/Console.idl	2012-11-12 04:29:32 UTC (rev 134185)
@@ -60,6 +60,6 @@
     void groupEnd();
     [CallWith=ScriptArguments|CallStack] void clear();
 
-    [V8CustomGetter] readonly attribute MemoryInfo memory;
+    readonly attribute MemoryInfo memory;
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to