Title: [160345] trunk/Source/WebCore
Revision
160345
Author
seo...@webkit.org
Date
2013-12-09 17:47:48 -0800 (Mon, 09 Dec 2013)

Log Message

Web Inspector: Remove enabled() in InspectorRuntimeAgent.
https://bugs.webkit.org/show_bug.cgi?id=125476

Reviewed by Joseph Pecoraro.

Dead code. It's never called anywhere.

No new tests, no behavior change.

* inspector/InspectorRuntimeAgent.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (160344 => 160345)


--- trunk/Source/WebCore/ChangeLog	2013-12-10 01:28:05 UTC (rev 160344)
+++ trunk/Source/WebCore/ChangeLog	2013-12-10 01:47:48 UTC (rev 160345)
@@ -1,3 +1,16 @@
+2013-12-09  Seokju Kwon  <seo...@webkit.org>
+
+        Web Inspector: Remove enabled() in InspectorRuntimeAgent.
+        https://bugs.webkit.org/show_bug.cgi?id=125476
+
+        Reviewed by Joseph Pecoraro.
+
+        Dead code. It's never called anywhere.
+
+        No new tests, no behavior change.
+
+        * inspector/InspectorRuntimeAgent.h:
+
 2013-12-09  Sam Weinig  <s...@webkit.org>
 
         Replace use of WTF::FixedArray with std::array

Modified: trunk/Source/WebCore/inspector/InspectorRuntimeAgent.h (160344 => 160345)


--- trunk/Source/WebCore/inspector/InspectorRuntimeAgent.h	2013-12-10 01:28:05 UTC (rev 160344)
+++ trunk/Source/WebCore/inspector/InspectorRuntimeAgent.h	2013-12-10 01:47:48 UTC (rev 160345)
@@ -56,7 +56,6 @@
 public:
     virtual ~InspectorRuntimeAgent();
 
-    bool enabled() const { return m_enabled; }
     // Part of the protocol.
     virtual void enable(ErrorString*) { m_enabled = true; }
     virtual void disable(ErrorString*) { m_enabled = false; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to