Title: [154570] trunk/Tools
Revision
154570
Author
[email protected]
Date
2013-08-25 02:27:30 -0700 (Sun, 25 Aug 2013)

Log Message

[gdb] Remove the pretty printer for KURLGooglePrivate
https://bugs.webkit.org/show_bug.cgi?id=120263

Reviewed by Benjamin Poulain.

Remove the pretty printer for the WebCore::KURLGooglePrivate structure that
was usable inside the gdb debugger. The structure was remove from the codebase
along with the GoogleURL backend for KURL.

* gdb/webkit.py:
(JSCJSStringPrinter.to_string):
(add_pretty_printers):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (154569 => 154570)


--- trunk/Tools/ChangeLog	2013-08-25 08:02:51 UTC (rev 154569)
+++ trunk/Tools/ChangeLog	2013-08-25 09:27:30 UTC (rev 154570)
@@ -1,3 +1,18 @@
+2013-08-25  Zan Dobersek  <[email protected]>
+
+        [gdb] Remove the pretty printer for KURLGooglePrivate
+        https://bugs.webkit.org/show_bug.cgi?id=120263
+
+        Reviewed by Benjamin Poulain.
+
+        Remove the pretty printer for the WebCore::KURLGooglePrivate structure that
+        was usable inside the gdb debugger. The structure was remove from the codebase
+        along with the GoogleURL backend for KURL.
+
+        * gdb/webkit.py:
+        (JSCJSStringPrinter.to_string):
+        (add_pretty_printers):
+
 2013-08-24  Filip Pizlo  <[email protected]>
 
         Unreviewed, fix build-webkit --ftl-jit in the case that you have your own llvm directory. We need to

Modified: trunk/Tools/gdb/webkit.py (154569 => 154570)


--- trunk/Tools/gdb/webkit.py	2013-08-25 08:02:51 UTC (rev 154569)
+++ trunk/Tools/gdb/webkit.py	2013-08-25 09:27:30 UTC (rev 154570)
@@ -167,12 +167,6 @@
         return WTFStringImplPrinter(self.val['m_value']).to_string()
 
 
-class WebCoreKURLGooglePrivatePrinter(StringPrinter):
-    "Print a WebCore::KURLGooglePrivate"
-    def to_string(self):
-        return WTFCStringPrinter(self.val['m_utf8']).to_string()
-
-
 class WebCoreQualifiedNamePrinter(StringPrinter):
     "Print a WebCore::QualifiedName"
 
@@ -278,7 +272,6 @@
         (re.compile("^WTF::CString$"), WTFCStringPrinter),
         (re.compile("^WTF::String$"), WTFStringPrinter),
         (re.compile("^WTF::StringImpl$"), WTFStringImplPrinter),
-        (re.compile("^WebCore::KURLGooglePrivate$"), WebCoreKURLGooglePrivatePrinter),
         (re.compile("^WebCore::QualifiedName$"), WebCoreQualifiedNamePrinter),
         (re.compile("^JSC::Identifier$"), JSCIdentifierPrinter),
         (re.compile("^JSC::JSString$"), JSCJSStringPrinter),
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to