Title: [125076] trunk
- Revision
- 125076
- Author
- commit-qu...@webkit.org
- Date
- 2012-08-08 12:55:37 -0700 (Wed, 08 Aug 2012)
Log Message
[WK2] Coding style violation was brought with r125031
https://bugs.webkit.org/show_bug.cgi?id=93503
Patch by Mikhail Pozdnyakov <mikhail.pozdnya...@intel.com> on 2012-08-08
Reviewed by Alexey Proskuryakov.
WKURLResponseCopyMimeType is corrected to WKURLResponseCopyMIMEType.
Source/WebKit2:
* Shared/API/c/WKURLResponse.cpp:
(WKURLResponseCopyMIMEType):
* Shared/API/c/WKURLResponse.h:
Tools:
* WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
(WTR::InjectedBundlePage::didReceiveResponseForResource):
* WebKitTestRunner/InjectedBundle/LayoutTestController.h:
(WTR::LayoutTestController::dumpProgressFinishedCallback): Removed trailing whitespace that was brought with the same revision.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (125075 => 125076)
--- trunk/Source/WebKit2/ChangeLog 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Source/WebKit2/ChangeLog 2012-08-08 19:55:37 UTC (rev 125076)
@@ -1,5 +1,18 @@
2012-08-08 Mikhail Pozdnyakov <mikhail.pozdnya...@intel.com>
+ [WK2] Coding style violation was brought with r125031
+ https://bugs.webkit.org/show_bug.cgi?id=93503
+
+ Reviewed by Alexey Proskuryakov.
+
+ WKURLResponseCopyMimeType is corrected to WKURLResponseCopyMIMEType.
+
+ * Shared/API/c/WKURLResponse.cpp:
+ (WKURLResponseCopyMIMEType):
+ * Shared/API/c/WKURLResponse.h:
+
+2012-08-08 Mikhail Pozdnyakov <mikhail.pozdnya...@intel.com>
+
[EFL] EFL Webkit needs a class wrapping eina stringshare
https://bugs.webkit.org/show_bug.cgi?id=93229
Modified: trunk/Source/WebKit2/Shared/API/c/WKURLResponse.cpp (125075 => 125076)
--- trunk/Source/WebKit2/Shared/API/c/WKURLResponse.cpp 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Source/WebKit2/Shared/API/c/WKURLResponse.cpp 2012-08-08 19:55:37 UTC (rev 125076)
@@ -42,7 +42,7 @@
return toCopiedURLAPI(toImpl(responseRef)->resourceResponse().url());
}
-WKStringRef WKURLResponseCopyMimeType(WKURLResponseRef responseRef)
+WKStringRef WKURLResponseCopyMIMEType(WKURLResponseRef responseRef)
{
return toCopiedAPI(toImpl(responseRef)->resourceResponse().mimeType());
}
Modified: trunk/Source/WebKit2/Shared/API/c/WKURLResponse.h (125075 => 125076)
--- trunk/Source/WebKit2/Shared/API/c/WKURLResponse.h 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Source/WebKit2/Shared/API/c/WKURLResponse.h 2012-08-08 19:55:37 UTC (rev 125076)
@@ -36,7 +36,7 @@
WK_EXPORT WKURLRef WKURLResponseCopyURL(WKURLResponseRef);
-WK_EXPORT WKStringRef WKURLResponseCopyMimeType(WKURLResponseRef);
+WK_EXPORT WKStringRef WKURLResponseCopyMIMEType(WKURLResponseRef);
#ifdef __cplusplus
}
Modified: trunk/Tools/ChangeLog (125075 => 125076)
--- trunk/Tools/ChangeLog 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Tools/ChangeLog 2012-08-08 19:55:37 UTC (rev 125076)
@@ -1,3 +1,17 @@
+2012-08-08 Mikhail Pozdnyakov <mikhail.pozdnya...@intel.com>
+
+ [WK2] Coding style violation was brought with r125031
+ https://bugs.webkit.org/show_bug.cgi?id=93503
+
+ Reviewed by Alexey Proskuryakov.
+
+ WKURLResponseCopyMimeType is corrected to WKURLResponseCopyMIMEType.
+
+ * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
+ (WTR::InjectedBundlePage::didReceiveResponseForResource):
+ * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
+ (WTR::LayoutTestController::dumpProgressFinishedCallback): Removed trailing whitespace that was brought with the same revision.
+
2012-08-08 Peter Beverloo <pe...@chromium.org>
Buildmaster changes in preparation of a Chromium Android tester
Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp (125075 => 125076)
--- trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp 2012-08-08 19:55:37 UTC (rev 125076)
@@ -1000,7 +1000,7 @@
WKRetainPtr<WKURLRef> url = ""
WKRetainPtr<WKStringRef> urlString = adoptWK(WKURLCopyLastPathComponent(url.get()));
- WKRetainPtr<WKStringRef> mimeTypeString = adoptWK(WKURLResponseCopyMimeType(response));
+ WKRetainPtr<WKStringRef> mimeTypeString = adoptWK(WKURLResponseCopyMIMEType(response));
InjectedBundle::shared().stringBuilder()->append(toWTFString(urlString));
InjectedBundle::shared().stringBuilder()->append(" has MIME type ");
Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h (125075 => 125076)
--- trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h 2012-08-08 19:39:00 UTC (rev 125075)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h 2012-08-08 19:55:37 UTC (rev 125076)
@@ -78,7 +78,7 @@
void dumpTitleChanges() { m_dumpTitleChanges = true; }
void dumpFullScreenCallbacks() { m_dumpFullScreenCallbacks = true; }
void dumpFrameLoadCallbacks() { setShouldDumpFrameLoadCallbacks(true); }
- void dumpProgressFinishedCallback() { setShouldDumpProgressFinishedCallback(true); }
+ void dumpProgressFinishedCallback() { setShouldDumpProgressFinishedCallback(true); }
void dumpResourceResponseMIMETypes() { m_dumpResourceResponseMIMETypes = true; }
void setShouldDumpFrameLoadCallbacks(bool value) { m_dumpFrameLoadCallbacks = value; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes