Title: [126827] trunk/Source/WebCore
Revision
126827
Author
[email protected]
Date
2012-08-27 17:42:53 -0700 (Mon, 27 Aug 2012)

Log Message

[V8] V8DOMWindowShell::setContext has no callers
https://bugs.webkit.org/show_bug.cgi?id=95147

Reviewed by Kentaro Hara.

Dead code is dead.

* bindings/v8/V8DOMWindowShell.cpp:
* bindings/v8/V8DOMWindowShell.h:
(V8DOMWindowShell):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (126826 => 126827)


--- trunk/Source/WebCore/ChangeLog	2012-08-28 00:40:43 UTC (rev 126826)
+++ trunk/Source/WebCore/ChangeLog	2012-08-28 00:42:53 UTC (rev 126827)
@@ -1,3 +1,16 @@
+2012-08-27  Adam Barth  <[email protected]>
+
+        [V8] V8DOMWindowShell::setContext has no callers
+        https://bugs.webkit.org/show_bug.cgi?id=95147
+
+        Reviewed by Kentaro Hara.
+
+        Dead code is dead.
+
+        * bindings/v8/V8DOMWindowShell.cpp:
+        * bindings/v8/V8DOMWindowShell.h:
+        (V8DOMWindowShell):
+
 2012-08-27  Dimitri Glazkov  <[email protected]>
 
         Rename ContentDistributor::distributeShadowChildrenTo to distributeNodeChildrenTo.

Modified: trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp (126826 => 126827)


--- trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2012-08-28 00:40:43 UTC (rev 126826)
+++ trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2012-08-28 00:42:53 UTC (rev 126827)
@@ -368,11 +368,6 @@
     return result;
 }
 
-void V8DOMWindowShell::setContext(v8::Handle<v8::Context> context)
-{
-    m_context.set(context);
-}
-
 bool V8DOMWindowShell::installDOMWindow(v8::Handle<v8::Context> context, DOMWindow* window)
 {
     // Create a new JS window object and use it as the prototype for the  shadow global object.

Modified: trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.h (126826 => 126827)


--- trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.h	2012-08-28 00:40:43 UTC (rev 126826)
+++ trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.h	2012-08-28 00:42:53 UTC (rev 126827)
@@ -68,7 +68,6 @@
     bool isContextInitialized();
 
     v8::Persistent<v8::Context> createNewContext(v8::Handle<v8::Object> global, int extensionGroup, int worldId);
-    void setContext(v8::Handle<v8::Context>);
     static bool installDOMWindow(v8::Handle<v8::Context> context, DOMWindow*);
 
     bool initializeIfNeeded();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to