Title: [149686] trunk/Tools
Revision
149686
Author
[email protected]
Date
2013-05-07 12:08:32 -0700 (Tue, 07 May 2013)

Log Message

Updated style of WebArchiveDumpSupport before putting it into WebKitTestRunner.
https://bugs.webkit.org/show_bug.cgi?id=115745

Patch by Alex Christensen <[email protected]> on 2013-05-07
Reviewed by Tim Horton.

* DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
(compareResourceURLs):
Updated style.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (149685 => 149686)


--- trunk/Tools/ChangeLog	2013-05-07 18:52:12 UTC (rev 149685)
+++ trunk/Tools/ChangeLog	2013-05-07 19:08:32 UTC (rev 149686)
@@ -1,3 +1,14 @@
+2013-05-07  Alex Christensen  <[email protected]>
+
+        Updated style of WebArchiveDumpSupport before putting it into WebKitTestRunner.
+        https://bugs.webkit.org/show_bug.cgi?id=115745
+
+        Reviewed by Tim Horton.
+
+        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
+        (compareResourceURLs):
+        Updated style.
+
 2013-05-06  Ryosuke Niwa  <[email protected]>
 
         Add an 'isReadOnly' member to IDL parse tree structure

Modified: trunk/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp (149685 => 149686)


--- trunk/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp	2013-05-07 18:52:12 UTC (rev 149685)
+++ trunk/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp	2013-05-07 19:08:32 UTC (rev 149686)
@@ -26,17 +26,17 @@
 #include "config.h"
 #include "WebArchiveDumpSupport.h"
 
+#include <CFNetwork/CFNetwork.h>
 #include <CoreFoundation/CoreFoundation.h>
-#include <CFNetwork/CFNetwork.h>
 #include <wtf/RetainPtr.h>
 
 extern "C" {
 
-CFURLRef CFURLResponseGetURL(CFURLResponseRef response);
-CFStringRef CFURLResponseGetMIMEType(CFURLResponseRef response);
-CFStringRef CFURLResponseGetTextEncodingName(CFURLResponseRef response);
-SInt64 CFURLResponseGetExpectedContentLength(CFURLResponseRef response);
-CFHTTPMessageRef CFURLResponseGetHTTPResponse(CFURLResponseRef response);
+CFURLRef CFURLResponseGetURL(CFURLResponseRef);
+CFStringRef CFURLResponseGetMIMEType(CFURLResponseRef);
+CFStringRef CFURLResponseGetTextEncodingName(CFURLResponseRef);
+SInt64 CFURLResponseGetExpectedContentLength(CFURLResponseRef);
+CFHTTPMessageRef CFURLResponseGetHTTPResponse(CFURLResponseRef);
 
 CFTypeID CFURLResponseGetTypeID(void);
 
@@ -149,7 +149,7 @@
 {
     CFStringRef url1 = static_cast<CFStringRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(val1), CFSTR("WebResourceURL")));
     CFStringRef url2 = static_cast<CFStringRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(val2), CFSTR("WebResourceURL")));
- 
+
     return CFStringCompare(url1, url2, kCFCompareAnchored);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to