Title: [106229] trunk/Source/WebCore
Revision
106229
Author
[email protected]
Date
2012-01-30 03:39:50 -0800 (Mon, 30 Jan 2012)

Log Message

2012-01-30  Nikolas Zimmermann  <[email protected]>

        Not reviewed. Fix Clang build for real after r106218.

        * inspector/CodeGeneratorInspector.py:
        (Generator.go): Add virtual destructor to the ABCs.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106228 => 106229)


--- trunk/Source/WebCore/ChangeLog	2012-01-30 11:32:20 UTC (rev 106228)
+++ trunk/Source/WebCore/ChangeLog	2012-01-30 11:39:50 UTC (rev 106229)
@@ -1,3 +1,10 @@
+2012-01-30  Nikolas Zimmermann  <[email protected]>
+
+        Not reviewed. Fix Clang build for real after r106218.
+
+        * inspector/CodeGeneratorInspector.py:
+        (Generator.go): Add virtual destructor to the ABCs.
+
 2012-01-30  Shinya Kawanaka  <[email protected]>
 
         No need to keep anonymous RenderBlock in DETAILS.

Modified: trunk/Source/WebCore/inspector/CodeGeneratorInspector.py (106228 => 106229)


--- trunk/Source/WebCore/inspector/CodeGeneratorInspector.py	2012-01-30 11:32:20 UTC (rev 106228)
+++ trunk/Source/WebCore/inspector/CodeGeneratorInspector.py	2012-01-30 11:39:50 UTC (rev 106229)
@@ -2381,6 +2381,7 @@
             agent_interface_name = Capitalizer.lower_camel_case_to_upper(domain_name) + "CommandHandler"
             Generator.backend_agent_interface_list.append("    class %s {\n" % agent_interface_name)
             Generator.backend_agent_interface_list.append("    public:\n")
+            Generator.backend_agent_interface_list.append("        virtual ~%s() { }\n" % agent_interface_name);
             if "commands" in json_domain:
                 for json_command in json_domain["commands"]:
                     Generator.process_command(json_command, domain_name, agent_field_name)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to