Changeset 184054 in webkit
- Timestamp:
- May 10, 2015, 2:26:51 PM (11 years ago)
- Location:
- trunk/Source
- Files:
-
- 11 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (modified) (1 diff)
-
WebCore/platform/ios/PasteboardIOS.mm (modified) (1 diff)
-
WebCore/platform/mediastream/RealtimeMediaSourceCapabilities.h (modified) (1 diff)
-
WebCore/platform/network/mac/ResourceErrorMac.mm (modified) (1 diff)
-
WebCore/rendering/RenderThemeIOS.mm (modified) (1 diff)
-
WebKit2/ChangeLog (modified) (1 diff)
-
WebKit2/Shared/Downloads/mac/DownloadMac.mm (modified) (1 diff)
-
WebKit2/UIProcess/WebProcessProxy.cpp (modified) (1 diff)
-
WebKit2/UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm (modified) (1 diff)
-
WebKit2/WebProcess/WebPage/WebBackForwardListProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r184053 r184054 1 2015-05-10 Sungmann Cho <sungmann.cho@navercorp.com> 2 3 Remove unnecessary semicolons. 4 https://bugs.webkit.org/show_bug.cgi?id=144844 5 6 Reviewed by Darin Adler. 7 8 No new tests, no behavior change. 9 10 * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: 11 (WebCore::MediaPlayerPrivateAVFoundationObjC::supportsType): 12 * platform/ios/PasteboardIOS.mm: 13 (WebCore::Pasteboard::readString): 14 * platform/mediastream/RealtimeMediaSourceCapabilities.h: 15 (WebCore::RealtimeMediaSourceCapabilities::setHasVideoSource): 16 * platform/network/mac/ResourceErrorMac.mm: 17 (WebCore::ResourceError::nsError): 18 * rendering/RenderThemeIOS.mm: 19 (WebCore::getSharedFunctionRef): 20 1 21 2015-05-10 Sungmann Cho <sungmann.cho@navercorp.com> 2 22 -
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm
r183927 r184054 1628 1628 1629 1629 NSString *typeString = [NSString stringWithFormat:@"%@; codecs=\"%@\"", (NSString *)parameters.type, (NSString *)parameters.codecs]; 1630 return [AVURLAsset isPlayableExtendedMIMEType:typeString] ? MediaPlayer::IsSupported : MediaPlayer::MayBeSupported; ;1630 return [AVURLAsset isPlayableExtendedMIMEType:typeString] ? MediaPlayer::IsSupported : MediaPlayer::MayBeSupported; 1631 1631 } 1632 1632 -
trunk/Source/WebCore/platform/ios/PasteboardIOS.mm
r179886 r184054 325 325 String value = strategy.readStringFromPasteboard(0, kUTTypeText); 326 326 if (!value.isNull()) 327 cocoaValue = [(NSString *)value precomposedStringWithCanonicalMapping]; ;327 cocoaValue = [(NSString *)value precomposedStringWithCanonicalMapping]; 328 328 } else if (cocoaType) { 329 329 if (RefPtr<SharedBuffer> buffer = strategy.readBufferFromPasteboard(0, cocoaType.get())) -
trunk/Source/WebCore/platform/mediastream/RealtimeMediaSourceCapabilities.h
r181152 r184054 122 122 123 123 bool hasVideoSource() { return m_videoSource; } 124 void setHasVideoSource(bool isVideo) { m_videoSource = isVideo; ;}124 void setHasVideoSource(bool isVideo) { m_videoSource = isVideo; } 125 125 126 126 private: -
trunk/Source/WebCore/platform/network/mac/ResourceErrorMac.mm
r173192 r184054 290 290 291 291 if (!m_platformError) 292 m_platformError = createNSErrorFromResourceErrorBase(*this); ;292 m_platformError = createNSErrorFromResourceErrorBase(*this); 293 293 294 294 return m_platformError.get(); -
trunk/Source/WebCore/rendering/RenderThemeIOS.mm
r183778 r184054 137 137 138 138 static HashMap<IOSGradientRef, CGFunctionRef>* linearFunctionRefs; 139 static HashMap<IOSGradientRef, CGFunctionRef>* exponentialFunctionRefs; ;139 static HashMap<IOSGradientRef, CGFunctionRef>* exponentialFunctionRefs; 140 140 141 141 if (interpolation == LinearInterpolation) { -
trunk/Source/WebKit2/ChangeLog
r184052 r184054 1 2015-05-10 Sungmann Cho <sungmann.cho@navercorp.com> 2 3 Remove unnecessary semicolons. 4 https://bugs.webkit.org/show_bug.cgi?id=144844 5 6 Reviewed by Darin Adler. 7 8 No new tests, no behavior change. 9 10 * Shared/Downloads/mac/DownloadMac.mm: 11 (-[WKDownloadAsDelegate download:shouldDecodeSourceDataOfMIMEType:]): 12 * UIProcess/WebProcessProxy.cpp: 13 (WebKit::WebProcessProxy::transformHandlesToObjects): 14 * UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm: 15 (WebKit::RemoteLayerTreeDrawingAreaProxy::indicatorLocation): 16 * WebProcess/WebPage/WebBackForwardListProxy.cpp: 17 (WebKit::idToHistoryItemMap): 18 1 19 2015-05-10 Darin Adler <darin@apple.com> 2 20 -
trunk/Source/WebKit2/Shared/Downloads/mac/DownloadMac.mm
r181410 r184054 266 266 }); 267 267 268 return returnValue; ;268 return returnValue; 269 269 } 270 270 -
trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp
r182610 r184054 832 832 #if PLATFORM(COCOA) 833 833 case API::Object::Type::ObjCObjectGraph: 834 return m_webProcessProxy.transformHandlesToObjects(static_cast<ObjCObjectGraph&>(object)); ;834 return m_webProcessProxy.transformHandlesToObjects(static_cast<ObjCObjectGraph&>(object)); 835 835 #endif 836 836 default: -
trunk/Source/WebKit2/UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm
r183841 r184054 270 270 FloatPoint tiledMapLocation = exposedRect().location(); 271 271 tiledMapLocation += FloatSize(indicatorInset, indicatorInset); 272 float scale = 1 / m_webPageProxy.pageScaleFactor(); ;272 float scale = 1 / m_webPageProxy.pageScaleFactor(); 273 273 tiledMapLocation.scale(scale, scale); 274 274 #endif -
trunk/Source/WebKit2/WebProcess/WebPage/WebBackForwardListProxy.cpp
r179472 r184054 58 58 static IDToHistoryItemMap& idToHistoryItemMap() 59 59 { 60 static NeverDestroyed<IDToHistoryItemMap> map; ;60 static NeverDestroyed<IDToHistoryItemMap> map; 61 61 return map; 62 62 }
Note:
See TracChangeset
for help on using the changeset viewer.