Title: [127230] trunk/Source/WebCore
- Revision
- 127230
- Author
- morr...@google.com
- Date
- 2012-08-30 21:51:57 -0700 (Thu, 30 Aug 2012)
Log Message
Unreviewed, followup build fix against r127228.
* dom/Notation.cpp:
(WebCore::Notation::cloneNode):
* dom/Notation.h:
(Notation):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (127229 => 127230)
--- trunk/Source/WebCore/ChangeLog 2012-08-31 04:51:47 UTC (rev 127229)
+++ trunk/Source/WebCore/ChangeLog 2012-08-31 04:51:57 UTC (rev 127230)
@@ -1,3 +1,12 @@
+2012-08-30 MORITA Hajime <morr...@google.com>
+
+ Unreviewed, followup build fix against r127228.
+
+ * dom/Notation.cpp:
+ (WebCore::Notation::cloneNode):
+ * dom/Notation.h:
+ (Notation):
+
2012-08-30 MORITA Hajime <morr...@google.com>
Unreviewed, rolling out r126127.
Modified: trunk/Source/WebCore/dom/Notation.cpp (127229 => 127230)
--- trunk/Source/WebCore/dom/Notation.cpp 2012-08-31 04:51:47 UTC (rev 127229)
+++ trunk/Source/WebCore/dom/Notation.cpp 2012-08-31 04:51:57 UTC (rev 127230)
@@ -43,7 +43,7 @@
return NOTATION_NODE;
}
-PassRefPtr<Node> Notation::cloneNode(bool /*deep*/, ExceptionCode&)
+PassRefPtr<Node> Notation::cloneNode(bool /*deep*/)
{
// Spec says cloning Notation nodes is "implementation dependent". We do not support it.
return 0;
Modified: trunk/Source/WebCore/dom/Notation.h (127229 => 127230)
--- trunk/Source/WebCore/dom/Notation.h 2012-08-31 04:51:47 UTC (rev 127229)
+++ trunk/Source/WebCore/dom/Notation.h 2012-08-31 04:51:57 UTC (rev 127230)
@@ -38,7 +38,7 @@
virtual String nodeName() const;
virtual NodeType nodeType() const;
- virtual PassRefPtr<Node> cloneNode(bool deep, ExceptionCode&);
+ virtual PassRefPtr<Node> cloneNode(bool deep);
virtual bool childTypeAllowed(NodeType) const;
String m_name;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes