- 21 Jan, 2014 40 commits
-
-
benjamin@webkit.org authored
* Scripts/webkitpy/common/config/contributors.json: I am too old to remember all those email addresses :) git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162502 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
beidson@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127399 Reviewed by Beth Dakin. Source/WebCore: Refactor the put() callback to take a resulting key or an error. * Modules/indexeddb/IDBServerConnection.h: * Modules/indexeddb/IDBTransactionBackendOperations.cpp: (WebCore::PutOperation::perform): Call to the backing store, then perform the appropriate IDB callback whether a key or an error was returned. * Modules/indexeddb/IDBTransactionBackendOperations.h: * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp: (WebCore::IDBServerConnectionLevelDB::put): Don’t call IDB callbacks directly. Instead, pass the resulting key/error back to the PutOperation. * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h: Source/WebKit2: * WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp: (WebKit::WebIDBServerConnection::put): * WebProcess/Databases/IndexedDB/WebIDBServerConnection.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162501 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrowe@apple.com authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162495 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zalan@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127212 Reviewed by Simon Fraser. Subpixel values accumulate differently when computing the text position inside a 300px wide div vs. multiple 'flow into' regions with 300px, 400px widths. They are both correct. Blink also addressed it by adjusting the test content. * fast/regions/overflow-moving-below-floats-in-variable-width-regions.html: * platform/mac/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162494 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jae.park@company100.net authored
https://bugs.webkit.org/show_bug.cgi?id=127388 Reviewed by Gyuyoung Kim. * html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): (WebCore::HTMLCanvasElement::drawingContext): (WebCore::HTMLCanvasElement::existingDrawingContext): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162493 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=121694 Patch by László Langó <llango.u-szeged@partner.samsung.com> on 2014-01-21 Reviewed by Ryosuke Niwa. Source/WebCore: Based on Blink a change: https://chromium.googlesource.com/chromium/blink/+/407c1d7b2c45974aa614b3f847ffe9e8fce205fa This patch fix an assertion failure. Range::nodeWillBeRemoved() might be called with removed node in ContainerNode, when DOMNodeRemovedFromDocument event handler calls removeChild(), for node being removed. Test: fast/dom/Range/remove-twice-crash.html * dom/ContainerNode.cpp: (WebCore::ContainerNode::willRemoveChild): * dom/ContainerNode.h: LayoutTests: * fast/dom/Range/remove-twice-crash-expected.txt: Added. * fast/dom/Range/remove-twice-crash.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162492 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
* UIProcess/API/Cocoa/WKProcessClassConfiguration.mm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162491 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jinwoo7.song@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=127263 Reviewed by Gyuyoung Kim. After r162276 and r162300, TimerWorkItem is getting nanoseconds as parameter. So it would be better to use nanoseconds in TimerWorkItem for consistency. * Platform/efl/DispatchQueueEfl.cpp: (DispatchQueue::performTimerWork): (DispatchQueue::insertTimerWorkItem): (DispatchQueue::getNextTimeOut): * Platform/efl/DispatchQueueWorkItemEfl.h: (TimerWorkItem::create): (TimerWorkItem::expirationTimeNanoSeconds): (TimerWorkItem::hasExpired): (TimerWorkItem::TimerWorkItem): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162490 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy_horton@apple.com authored
Reviewed by Simon Fraser. * WebKit2.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162488 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127378 <rdar://problem/15875413> Reviewed by Dan Bernstein. * UIProcess/API/Cocoa/WKProcessClassConfiguration.h: Added. * UIProcess/API/Cocoa/WKProcessClassConfiguration.mm: Added. (-[WKProcessClassConfiguration copyWithZone:]): * UIProcess/API/Cocoa/WKProcessClassConfigurationPrivate.h: Added. * WebKit2.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162487 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy_horton@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127381 <rdar://problem/15872168> Reviewed by Simon Fraser. * platform/graphics/cg/PDFDocumentImage.cpp: (WebCore::transformContextForPainting): Only try to make the scale uniform if it isn't already, and use the minimum of the two original scales when doing so, so that it is absolutely certain to fit inside space allocated for the image during layout. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162486 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy_horton@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127385 Reviewed by Dean Jackson. * UIProcess/mac/ViewGestureController.mm: Renamed from Source/WebKit2/UIProcess/mac/ViewGestureController.cpp. * WebKit2.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162485 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
roger_fong@apple.com authored
* html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): * loader/FrameLoaderTypes.h: * UIProcess/API/C/WKAPICast.h: (WebKit::toWebGLLoadPolicy): * UIProcess/API/C/WKPageLoaderClient.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162483 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127353 Test landed with this fix was filing everywhere, trying to fix it. * accessibility/password-field-value.html: Fix paths in the test, and clean it up a little. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162482 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dfarler@apple.com authored
Reviewed by Daniel bates. * Scripts/package-root: Added. (usage): * Scripts/webkitdirs.pm: (XcodeSDKPath): Added function. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162481 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127373 Reviewed by Beth Dakin. Instead of PLATFORM(IOS) #idefs at every call site for viewportConstrainedVisibleContentRect(), move the #ifdef inside viewportConstrainedVisibleContentRect(). The one call site that needs special handling is RenderLayerBacking::updateCompositedBounds(), which needs to avoid clipping fixed layers to the custom fixed position rect, but instead to visibleContentRect() (which is really the document bounds on iOS). This ensures that the fixed layers aren't clipped when zooming out. * page/FrameView.cpp: (WebCore::FrameView::viewportConstrainedVisibleContentRect): * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::stickyPositionOffset): * rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::updateCompositedBounds): * rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::requiresCompositingForPosition): (WebCore::RenderLayerCompositor::computeFixedViewportConstraints): (WebCore::RenderLayerCompositor::computeStickyViewportConstraints): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162480 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
alex.christensen@flexsim.com authored
* WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in: Corrected 64-bit linker symbols. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162479 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127374 Reviewed by Dan Bernstein. * WebKit2.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162478 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aestes@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127372 Reviewed by Dan Bernstein. * Configurations/WebCore.xcconfig: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162477 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127368 Reviewed by Tim Horton. Similar to the build-webkit change in <https://bugs.webkit.org/show_bug.cgi?id=127364>, we don't want to build DumpRenderTree, gtest, or TestWebKitAPI when running make in Tools. * Makefile: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162476 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
betravis@adobe.com authored
https://bugs.webkit.org/show_bug.cgi?id=127200 Reviewed by Dirk Schulze. Source/WebCore: Convert the parsed shape-box pair to a CSSValueList rather than directly adding the box value to BasicShape. The CSSValueList preserves the shape-box ordering, and cleans up a little bit of the code shared between clip and shape values. Modifying existing parsing tests. * css/CSSComputedStyleDeclaration.cpp: (WebCore::shapePropertyValue): Factor out code common to generating shape values. (WebCore::ComputedStyleExtractor::propertyValue): Generate a CSSValueList when you have both a shape and a box. * css/CSSParser.cpp: (WebCore::CSSParser::parseBasicShapeAndOrBox): Factor out code common to clip paths and shape properties that parses the [basic-shape || box] syntax from the CSS Shapes spec. (WebCore::CSSParser::parseShapeProperty): Parse shape-box pairs as a CSSValueList. * css/DeprecatedStyleBuilder.cpp: (WebCore::ApplyPropertyShape::applyValue): Use the CSSValueList for shape-box pairs. * css/CSSValueList.h: (WebCore::CSSValueList::itemWithoutBoundsCheck): Add a const version. * page/animation/CSSPropertyAnimation.cpp: (WebCore::blendFunc): Specify a box when blending. * rendering/style/ShapeValue.h: (WebCore::ShapeValue::createShapeValue): Add a box parameter. (WebCore::ShapeValue::ShapeValue): Ditto. LayoutTests: Modify the expectations for box shape pairs, preserving the order of the arguments in non-computed values. Computed values are still a shape followed by a box. * fast/shapes/parsing/parsing-shape-inside-expected.txt: * fast/shapes/parsing/parsing-shape-outside-expected.txt: * fast/shapes/parsing/parsing-test-utils.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162475 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127323 Reviewed by Chris Fleizach. This test got de-flaked on bots by rolling out r162354. But there was still a potential race in it, which this change fixes. * platform/mac-wk2/TestExpectations: Removed expectation. * platform/mac/accessibility/iframe-aria-hidden.html: Run the test in onload, as frames load asynchronously. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162474 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Substitute ASSERT_UNUSED() for ASSERT() to resolve a compiler warning that the argument platformLayer is unused. The argument platformLayer is only used in the asserted condition, which isn't compiled in a release build; => the argument is unused in a release build. * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::parseAttribute): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162473 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zoltan@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127154 Reviewed by David Hyatt. I modified MidpointState to behave like a class, updated the call sites also. No new tests, no behavior change. * platform/text/BidiResolver.h: (WebCore::MidpointState::reset): (WebCore::MidpointState::startIgnoringSpaces): (WebCore::MidpointState::stopIgnoringSpaces): (WebCore::MidpointState::midpoints): (WebCore::MidpointState::numMidpoints): (WebCore::MidpointState::currentMidpoint): (WebCore::MidpointState::incrementCurrentMidpoint): (WebCore::MidpointState::decreaseNumMidpoints): (WebCore::MidpointState::betweenMidpoints): (WebCore::MidpointState::setBetweenMidpoints): (WebCore::MidpointState::addMidpoint): Renamed from deprecatedAddMidpoint, since now its private, we no longer need to discourage callers from using it. * rendering/InlineIterator.h: (WebCore::IsolateTracker::addFakeRunIfNecessary): * rendering/RenderBlockLineLayout.cpp: (WebCore::RenderBlockFlow::appendRunsForObject): (WebCore::constructBidiRunsForLine): * rendering/line/BreakingContextInlineHeaders.h: (WebCore::checkMidpoints): * rendering/line/TrailingObjects.cpp: (WebCore::TrailingObjects::updateMidpointsForTrailingBoxes): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162472 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127364 Reviewed by Simon Fraser. For now, don't build DumpRenderTree and TestWebKitAPI for iOS as these projects fail to build because we need to upstream the relevant iOS changes. Also, don't build gtest, which is a dependency of TestWebKitAPI since we aren't building TestWebKitAPI. * Scripts/build-webkit: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162471 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
* Scripts/webkitpy/common/config/watchlist: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162470 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
http://trac.webkit.org/changeset/162452 https://bugs.webkit.org/show_bug.cgi?id=127366 broke a few tests on all Mac WebKit1 bots (Requested by thorton on #webkit). Source/WebCore: * WebCore.exp.in: * page/FocusController.cpp: (WebCore::FocusController::FocusController): (WebCore::FocusController::setFocused): (WebCore::FocusController::setActive): (WebCore::FocusController::setContentIsVisible): * page/FocusController.h: (WebCore::FocusController::isActive): (WebCore::FocusController::isFocused): * page/Page.cpp: (WebCore::Page::Page): (WebCore::Page::setIsInWindow): (WebCore::Page::setIsVisuallyIdle): (WebCore::Page::setIsVisible): (WebCore::Page::visibilityState): (WebCore::Page::hiddenPageCSSAnimationSuspensionStateChanged): * page/Page.h: (WebCore::Page::isVisible): (WebCore::Page::isInWindow): Source/WebKit/mac: * WebView/WebView.mm: (-[WebView _windowWillOrderOnScreen:]): (-[WebView _windowWillOrderOffScreen:]): Source/WebKit2: * WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::WebPage): (WebKit::WebPage::setActive): (WebKit::WebPage::setViewIsVisible): (WebKit::WebPage::setFocused): (WebKit::WebPage::setIsInWindow): (WebKit::WebPage::setViewStateInternal): (WebKit::WebPage::setIsVisuallyIdle): * WebProcess/WebPage/WebPage.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162467 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cfleizach@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127353 Reviewed by Brent Fulgham. Source/WebCore: The Mac platform should now expose the rendered value of password fields through AX. Test: accessibility/password-field-value.html * accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::textLength): (WebCore::AccessibilityRenderObject::passwordFieldValue): LayoutTests: * accessibility/password-field-value-expected.txt: Added. * accessibility/password-field-value.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162466 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127356 Patch by Martin Hock <mhock@apple.com> on 2014-01-21 Reviewed by Alexey Proskuryakov. * UIProcess/API/C/WKSessionRef.cpp: (WKSessionIsEphemeral): * UIProcess/API/C/WKSessionRef.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162465 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=125301 Patch by Robert Sipka <sipka@inf.u-szeged.hu> on 2014-01-21 Reviewed by Brent Fulgham. Set ssl error informations for the users. * platform/network/curl/ResourceHandleManager.cpp: (WebCore::ResourceHandleManager::dispatchSynchronousJob): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162464 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127360 Reviewed by Andy Estes. MobileSafari inappropriately calls these WebCore functions directly, so export them. * WebCore.exp.in: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162463 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127362 Reviewed by Dave Hyatt. Various platforms customize the rect used to layout position:fixed elements, and each modified RenderBox::availableLogicalHeight/WidthUsing() in different ways. Clean this up by adding RenderView::clientLogicalWidth/HeightForFixedPosition(), and moving the platform hacks into it. * rendering/RenderBox.cpp: (WebCore::RenderBox::availableLogicalHeightUsing): (WebCore::RenderBox::containingBlockLogicalWidthForPositioned): (WebCore::RenderBox::containingBlockLogicalHeightForPositioned): * rendering/RenderView.cpp: (WebCore::RenderView::clientLogicalWidthForFixedPosition): (WebCore::RenderView::clientLogicalHeightForFixedPosition): * rendering/RenderView.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162462 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
Log an error for a common cause of WebProcess early launch crashing in misconfigured development builds https://bugs.webkit.org/show_bug.cgi?id=127121 Reviewed by Anders Carlsson. A common cause of early WebProcess crashes during development is a null return from CFBundleGetValueForInfoDictionaryKey(), so log and return an error in this case rather than passing a null C string to dlsym(). * Shared/EntryPointUtilities/mac/LegacyProcess/ChildProcessMain.mm: (WebKit::BootstrapMain): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162461 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mhahnenberg@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127357 Reviewed by Filip Pizlo. Some platforms use t0 and t1 for their first two arguments, so using those to load the cell for the write barrier is a bad idea because it will get clobbered. * llint/LowLevelInterpreter32_64.asm: * llint/LowLevelInterpreter64.asm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162460 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
<https://webkit.org/b/108184> Patch by Tamas Gergely <tgergely.u-szeged@partner.samsung.com> on 2014-01-21 Reviewed by Philip Rogers. Source/WebCore: In the case a SMILElement timing had a syncbase dependency on an indefinite value the assert were raised. The assert has been removed and a check has been added instead that prevents the addition of indefinite times to the time list. Test: svg/animations/smil-syncbase-self-dependency.svg * svg/animation/SVGSMILElement.cpp: (WebCore::SVGSMILElement::createInstanceTimesFromSyncbase): ASSERT removed. LayoutTests: Test checks whether valid self-dependency is accidentally broken. * svg/animations/smil-syncbase-self-dependency-expected.txt: Added. * svg/animations/smil-syncbase-self-dependency.svg: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162459 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy_horton@apple.com authored
* UIProcess/mac/RemoteLayerTreeHost.mm: * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.mm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162458 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127110 Patch by peavo@outlook.com <peavo@outlook.com> on 2014-01-21 Reviewed by Brent Fulgham. * WebDownloadCurl.cpp: (WebDownload::init): Set user agent string in download request. * WebView.cpp: (WebView::downloadURL): Avoid early return if no ResourceHandle is provided. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162457 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zalan@apple.com authored
Reviewed by Simon Fraser. * lldb/lldb_webkit.py: (WebCoreLayoutUnitProvider.to_string): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162456 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mmaxfield@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127329 Reviewed by Dean Jackson. Adding a test for text-decoration-skip: ink inheriting * fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-ink-inherit-expected.html: Added. * fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-ink-inherit.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162455 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy_horton@apple.com authored
* UIProcess/API/mac/WKView.mm: And, fix the build by adding an include I accidentally missed. * UIProcess/mac/RemoteLayerTreeHost.mm: * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.mm: * WebCore.xcodeproj/project.pbxproj: * platform/graphics/ca/mac/PlatformCALayerMac.mm: * platform/graphics/mac/CALayerWebAdditions.h: Removed. * platform/graphics/mac/CALayerWebAdditions.mm: Removed. * platform/graphics/mac/WebCoreCALayerExtras.h: Added. * platform/graphics/mac/WebCoreCALayerExtras.mm: Added. Rename. (-[CALayer web_disableAllActions]): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162454 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-