Title: [158244] trunk/Source/WebCore
Revision
158244
Author
[email protected]
Date
2013-10-29 19:40:06 -0700 (Tue, 29 Oct 2013)

Log Message

Remove mutable keyword from member variables of XMLHttpRequest
https://bugs.webkit.org/show_bug.cgi?id=123481

Reviewed by Andreas Kling.

No new tests, no change in functionality.

* xml/XMLHttpRequest.h: Remove mutable keyword as these are no longer used in const functions.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158243 => 158244)


--- trunk/Source/WebCore/ChangeLog	2013-10-30 01:51:17 UTC (rev 158243)
+++ trunk/Source/WebCore/ChangeLog	2013-10-30 02:40:06 UTC (rev 158244)
@@ -1,3 +1,14 @@
+2013-10-29  Seokju Kwon  <[email protected]>
+
+        Remove mutable keyword from member variables of XMLHttpRequest
+        https://bugs.webkit.org/show_bug.cgi?id=123481
+
+        Reviewed by Andreas Kling.
+
+        No new tests, no change in functionality.
+
+        * xml/XMLHttpRequest.h: Remove mutable keyword as these are no longer used in const functions.
+
 2013-10-29  Myles C. Maxfield  <[email protected]>
 
         Underline bounds cannot be queried before underline itself is drawn

Modified: trunk/Source/WebCore/xml/XMLHttpRequest.h (158243 => 158244)


--- trunk/Source/WebCore/xml/XMLHttpRequest.h	2013-10-30 01:51:17 UTC (rev 158243)
+++ trunk/Source/WebCore/xml/XMLHttpRequest.h	2013-10-30 02:40:06 UTC (rev 158244)
@@ -232,11 +232,11 @@
     RefPtr<TextResourceDecoder> m_decoder;
 
     StringBuilder m_responseBuilder;
-    mutable bool m_createdDocument;
-    mutable RefPtr<Document> m_responseDocument;
+    bool m_createdDocument;
+    RefPtr<Document> m_responseDocument;
     
     RefPtr<SharedBuffer> m_binaryResponseBuilder;
-    mutable RefPtr<JSC::ArrayBuffer> m_responseArrayBuffer;
+    RefPtr<JSC::ArrayBuffer> m_responseArrayBuffer;
 
     bool m_error;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to