Title: [134422] trunk/Source/WebCore
Revision
134422
Author
[email protected]
Date
2012-11-13 08:08:41 -0800 (Tue, 13 Nov 2012)

Log Message

Remove the non-const overload of ElementAttributeData::inlineStyle().

Rubber-stamped by Anders Koivisto.

No call sites actually needed a mutable StylePropertySet* from inlineStyle() anyway.

* dom/ElementAttributeData.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134421 => 134422)


--- trunk/Source/WebCore/ChangeLog	2012-11-13 16:06:41 UTC (rev 134421)
+++ trunk/Source/WebCore/ChangeLog	2012-11-13 16:08:41 UTC (rev 134422)
@@ -1,3 +1,13 @@
+2012-11-13  Andreas Kling  <[email protected]>
+
+        Remove the non-const overload of ElementAttributeData::inlineStyle().
+
+        Rubber-stamped by Anders Koivisto.
+
+        No call sites actually needed a mutable StylePropertySet* from inlineStyle() anyway.
+
+        * dom/ElementAttributeData.h:
+
 2012-11-13  Keishi Hattori  <[email protected]>
 
         [Chromium] Enable input type month/week

Modified: trunk/Source/WebCore/dom/ElementAttributeData.h (134421 => 134422)


--- trunk/Source/WebCore/dom/ElementAttributeData.h	2012-11-13 16:06:41 UTC (rev 134421)
+++ trunk/Source/WebCore/dom/ElementAttributeData.h	2012-11-13 16:08:41 UTC (rev 134422)
@@ -55,7 +55,6 @@
     void setIdForStyleResolution(const AtomicString& newId) const { m_idForStyleResolution = newId; }
 
     const StylePropertySet* inlineStyle() const { return m_inlineStyleDecl.get(); }
-    StylePropertySet* inlineStyle() { return m_inlineStyleDecl.get(); }
     StylePropertySet* ensureInlineStyle(StyledElement*);
     StylePropertySet* ensureMutableInlineStyle(StyledElement*);
     void updateInlineStyleAvoidingMutation(StyledElement*, const String& text) const;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to