Title: [92751] trunk/Source/WebKit/chromium
Revision
92751
Author
[email protected]
Date
2011-08-10 00:35:13 -0700 (Wed, 10 Aug 2011)

Log Message

[Chromium] Name an enum used in some template arguments.
https://bugs.webkit.org/show_bug.cgi?id=65953

Patch by Peter Kasting <[email protected]> on 2011-08-10
Reviewed by Darin Fisher.

* public/WebHTTPBody.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (92750 => 92751)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-10 07:06:57 UTC (rev 92750)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-10 07:35:13 UTC (rev 92751)
@@ -1,3 +1,12 @@
+2011-08-10  Peter Kasting  <[email protected]>
+
+        [Chromium] Name an enum used in some template arguments.
+        https://bugs.webkit.org/show_bug.cgi?id=65953
+
+        Reviewed by Darin Fisher.
+
+        * public/WebHTTPBody.h:
+
 2011-08-09  Alexei Svitkine  <[email protected]>
 
         [Chromium] Enable rubber banding when scrolling.

Modified: trunk/Source/WebKit/chromium/public/WebHTTPBody.h (92750 => 92751)


--- trunk/Source/WebKit/chromium/public/WebHTTPBody.h	2011-08-10 07:06:57 UTC (rev 92750)
+++ trunk/Source/WebKit/chromium/public/WebHTTPBody.h	2011-08-10 07:35:13 UTC (rev 92751)
@@ -48,7 +48,7 @@
 class WebHTTPBody {
 public:
     struct Element {
-        enum { TypeData, TypeFile, TypeBlob } type;
+        enum Type { TypeData, TypeFile, TypeBlob } type;
         WebData data;
         WebString filePath;
         long long fileStart;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to