Timeline
Jan 8, 2017:
- 9:35 PM Changeset in webkit [210498] by
-
- 2 edits in trunk/Source/JavaScriptCore
Inject MarkedSpace size classes for a few more high-volume objects.
<https://webkit.org/b/166815>
Reviewed by Darin Adler.
Add the following classes to the list of manually injected size classes:
- JSString
- JSFunction
- PropertyTable
- Structure
Only Structure actually ends up with a new size class, the others already
can't get any tighter due to the current MarkedBlock::atomSize being 16.
I've put them in anyway to ensure that we have optimally carved-out cells
for them in the future, should they grow.
With this change, Structures get allocated in 128-byte cells instead of
160-byte cells, giving us 25% more Structures per MarkedBlock.
- heap/MarkedSpace.cpp:
- 8:12 PM Changeset in webkit [210497] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, since this test is slow it should run in fewer configurations. This resolves the
occasional timeouts I was seeing.
- js/script-tests/regress-139548.js:
- 9:44 AM Changeset in webkit [210496] by
-
- 6 edits in trunk/Source
Introduce CPU(X86_SSE2) instead of various SSE2 checks
https://bugs.webkit.org/show_bug.cgi?id=166808
Reviewed by Michael Catanzaro.
Now copyLCharsFromUCharSource can use SSE2 implementation on non-Darwin
OSes, and all SSE2 code paths are available for MSVC on x86 if /arch:SSE2
or higher is enabled, and for MSVC on x86_64.
Source/WebCore:
No new tests needed.
- platform/audio/SincResampler.cpp:
(WebCore::SincResampler::process):
- platform/audio/VectorMath.cpp:
(WebCore::VectorMath::vsma):
(WebCore::VectorMath::vsmul):
(WebCore::VectorMath::vadd):
(WebCore::VectorMath::vmul):
(WebCore::VectorMath::zvmul):
(WebCore::VectorMath::vsvesq):
(WebCore::VectorMath::vmaxmgv):
Source/WTF:
- wtf/Platform.h:
- wtf/text/ASCIIFastPath.h:
(WTF::copyLCharsFromUCharSource):
Jan 7, 2017:
- 10:02 PM Changeset in webkit [210495] by
-
- 2 edits in trunk/Source/WebCore
Avoid triggering rebuilds for minor changes of CSSProperties.json
https://bugs.webkit.org/show_bug.cgi?id=166810
Post-review cleanup suggested by Darin Adler.
- css/makeprop.pl:
- 5:22 PM Changeset in webkit [210494] by
-
- 4 edits in trunk/Tools
Add a setting to create editable MiniBrowser windows by default
https://bugs.webkit.org/show_bug.cgi?id=166806
Reviewed by Beth Dakin.
- MiniBrowser/mac/AppDelegate.m:
(-[BrowserAppDelegate createBrowserWindowController:]):
(-[BrowserAppDelegate applicationDidFinishLaunching:]):
(-[BrowserAppDelegate _updateNewWindowKeyEquivalents]):
- MiniBrowser/mac/SettingsController.h:
- MiniBrowser/mac/SettingsController.m:
(-[SettingsController _populateMenu]):
(-[SettingsController validateMenuItem:]):
(-[SettingsController toggleCreateEditorByDefault:]):
(-[SettingsController createEditorByDefault]):
Add a setting and update the key equivalents accordingly.
Also make sure to make the right kind of window on launch.
- 3:39 PM Changeset in webkit [210493] by
-
- 2 edits in trunk/Source/WebCore
Avoid triggering rebuilds for minor changes of CSSProperties.json
https://bugs.webkit.org/show_bug.cgi?id=166810
Reviewed by Daniel Bates.
We expect to make lots of metadata-related changes to CSSProperties.json, and
these should not trigger rebuilds.
Have makeprop.pl write to temporary files first, then only replace the generated
files if the contents differ.
- css/makeprop.pl:
(replaceFileIfChanged):
- 2:08 PM Changeset in webkit [210492] by
-
- 27 edits in trunk/Source
Remove PassRefPtr use from "inspector", "platform/sql", and "platform/text"
https://bugs.webkit.org/show_bug.cgi?id=166797
Reviewed by Alex Christensen.
Source/WebCore:
- Modules/webdatabase/Database.cpp:
(WebCore::Database::performOpenAndVerify): Pass a reference instead of a pointer.
- dom/Document.cpp:
(WebCore::canonicalizedTitle): Map backslashes to currency symbols inside the
existing loop through the characters instead of calling a function confusingly
named "displayBuffer" to do it. More straightforward, possibly more efficient,
one less function.
(WebCore::Document::displayStringModifiedByEncoding): Call replace to map
backslashes to currency symbols instead of calling a special displayString
function. There was no real benefit to using that function; the String::replace
function has all the same optimizations, and this was also the only call site.
- editing/SpellChecker.cpp:
(WebCore::SpellChecker::invokeRequest): Pass a reference instead of a pointer.
- inspector/InspectorOverlay.cpp:
(WebCore::InspectorOverlay::overlayPage): Call createEmptyEditorClient instead
of using the class EmptyEditorClient directly.
- loader/EmptyClients.cpp: Moved most of the empty clients here from the header.
Also made lots more things private.
(WebCore::createEmptyEditorClient): Added.
(WebCore::emptyDiagnosticLoggingClient): Added.
- loader/EmptyClients.h: Updated for above changes. Made more things private.
- page/DatabaseProvider.h: Removed unneeded include.
- page/MainFrame.cpp: Ditto.
- page/Page.cpp:
(WebCore::Page::diagnosticLoggingClient): Call emptyDiagnosticLoggingClient
instead of using the class EmptyDiagnosticLoggingClient directly.
- platform/sql/SQLiteDatabase.cpp:
(WebCore::SQLiteDatabase::setAuthorizer): Take a reference instead of a
PassRefPtr.
- platform/sql/SQLiteDatabase.h: Updated for above.
- platform/text/BidiContext.cpp:
(WebCore::BidiContext::BidiContext): Moved this function here from the header.
(WebCore::copyContextAndRebaselineLevel): Return a Ref instead of a PassRefPtr,
and take a reference rather than a raw pointer.
(WebCore::BidiContext::copyStackRemovingUnicodeEmbeddingContexts): Return a
Ref instead of a PassRefPtr.
- platform/text/BidiContext.h: Updated for the above changes.
- platform/text/BidiResolver.h: Simplify initialization, use more references,
auto, modern for loops, refer to derived class as that rather than the non-C++
term subclass.
- platform/text/TextCheckerClient.h: Changd argument from PassRefPtr to a
reference.
- platform/text/TextEncoding.h:
(WebCore::TextEncoding::displayString): Deleted.
(WebCore::TextEncoding::displayBuffer): Deleted.
- rendering/RootInlineBox.cpp: Style tweaks and use a modern for loop.
- svg/graphics/SVGImage.cpp:
(WebCore::SVGImage::dataChanged): Call createEmptyEditorClient instead
of using the class EmptyEditorClient directly.
Source/WebKit/mac:
- WebCoreSupport/WebEditorClient.h: Updated to take a reference.
- WebCoreSupport/WebEditorClient.mm:
(WebEditorClient::requestCheckingOfString): Take a reference
instead of a PassRefPtr.
Source/WebKit/win:
- WebCoreSupport/WebEditorClient.h: Update argument to take a reference
instead of a PassRefPtr.
Source/WebKit2:
- WebProcess/WebCoreSupport/WebEditorClient.cpp:
(WebKit::WebEditorClient::requestCheckingOfString): Take a reference
instead of a PassRefPtr.
- WebProcess/WebCoreSupport/WebEditorClient.h: Updated for above change.
- 1:29 PM Changeset in webkit [210491] by
-
- 16 edits9 adds21 deletes in trunk
[QuickLook] Update quicklook test expectations
https://bugs.webkit.org/show_bug.cgi?id=166798
<rdar://problem/26477735>
Reviewed by Alex Christensen.
Source/WebCore:
QuickLook uses UUIDs to generate x-apple-ql-id: URLs, so they will differ each time a
document is previewed. Since these URLs are included in QuickLook layout test results,
WebArchiveDumpSupport needs to replace them with predictable values when dumping a web
archive.
- testing/cocoa/WebArchiveDumpSupport.mm:
(WebCoreTestSupport::quickLookURLReplacements): Created a static Vector of CFStringRef pairs
to store x-apple-ql-id: URLs and their replacement values.
(WebCoreTestSupport::normalizeWebResourceURL): If the URL starts with “x-apple-ql-id://”,
replace the text between the scheme and the file extension with “resource”. Store the
original URL along with its replacement in quickLookURLReplacements().
(WebCoreTestSupport::createXMLStringFromWebArchiveData): Replaced all QuickLook URLs in the
final XML text with their replacement URLs.
LayoutTests:
For documents that generate HTML previews, updated the expected results to be web archives.
Web archives capture the same information that the expected HTML files did, but allow for
easy rebasing with --reset-results.
For documents that generate PDF previews, a webarchive expected result is inappropriate
since the generated PDF will differ between runs due to changing metadata (e.g. creation
date). These tests were kept as reftests but with updated expected results.
- platform/ios-simulator/TestExpectations: Unskipped quicklook/.
- quicklook/excel-expected.html: Removed.
- quicklook/excel-expected.txt: Added.
- quicklook/excel-legacy-expected.html: Removed.
- quicklook/excel-legacy-expected.txt: Added.
- quicklook/excel-legacy.html: Updated to dump as webarchive.
- quicklook/excel.html: Ditto.
- quicklook/keynote-09-expected.html: Removed.
- quicklook/keynote-09-expected.txt: Added.
- quicklook/keynote-09.html: Updated to dump as webarchive.
- quicklook/numbers-09-expected.html: Removed.
- quicklook/numbers-09-expected.txt: Added.
- quicklook/numbers-09.html: Updated to dump as webarchive.
- quicklook/pages-09-expected.html: Removed.
- quicklook/pages-09-expected.txt: Added.
- quicklook/pages-09.html: Updated to dump as webarchive.
- quicklook/powerpoint-expected.html: Removed.
- quicklook/powerpoint-expected.txt: Added.
- quicklook/powerpoint-legacy-expected.html: Removed.
- quicklook/powerpoint-legacy-expected.txt: Added.
- quicklook/powerpoint-legacy.html: Updated to dump as webarchive.
- quicklook/powerpoint.html: Updated to dump as webarchive.
- quicklook/resources/excel-expected.html: Removed.
- quicklook/resources/excel-legacy-expected.html: Removed.
- quicklook/resources/keynote-09-expected/index.css: Removed.
- quicklook/resources/keynote-09-expected/index.html: Removed.
- quicklook/resources/keynote-09-expected/index.js: Removed.
- quicklook/resources/keynote-expected.pdf: Updated.
- quicklook/resources/numbers-09-expected/canvas.js: Removed.
- quicklook/resources/numbers-09-expected/index.html: Removed.
- quicklook/resources/numbers-09-expected/navigation.css: Removed.
- quicklook/resources/numbers-09-expected/navigation.html: Removed.
- quicklook/resources/numbers-09-expected/sheet_1.html: Removed.
- quicklook/resources/numbers-expected.pdf: Updated.
- quicklook/resources/pages-09-expected/index.css: Removed.
- quicklook/resources/pages-09-expected/index.html: Removed.
- quicklook/resources/pages-expected.pdf: Updated.
- quicklook/resources/powerpoint-expected.html: Removed.
- quicklook/resources/powerpoint-legacy-expected.html: Removed.
- quicklook/resources/webkit-icon.pdf: Removed.
- quicklook/resources/webkit-icon.png: Removed.
- quicklook/resources/webkit-icon.tiff: Removed.
- quicklook/resources/word-expected.html: Removed.
- quicklook/resources/word-legacy-expected.html: Removed.
- quicklook/word-expected.html: Removed.
- quicklook/word-expected.txt: Added.
- quicklook/word-legacy-expected.html: Removed.
- quicklook/word-legacy-expected.txt: Added.
- quicklook/word-legacy.html: Updated to dump as webarchive.
- quicklook/word.html: Updated to dump as webarchive.
- 1:23 PM Changeset in webkit [210490] by
-
- 3 edits in trunk/Tools
Fix the 32-bit build.
- MiniBrowser/mac/BrowserWindowController.h:
- MiniBrowser/mac/BrowserWindowController.m:
- 1:18 PM Changeset in webkit [210489] by
-
- 2 edits in trunk/Tools
Fix the 32-bit build.
- MiniBrowser/mac/BrowserWindowController.m:
- 1:15 PM Changeset in webkit [210488] by
-
- 3 edits in trunk/Tools
Make it possible to drop HTML files on the MiniBrowser icon
https://bugs.webkit.org/show_bug.cgi?id=166802
Reviewed by Simon Fraser.
- MiniBrowser/mac/AppDelegate.m:
(-[BrowserAppDelegate application:openFile:]):
- MiniBrowser/mac/Info.plist:
If you're using an editable window, the usual trick of dropping on the
window doesn't work anymore (it makes an <attachment> instead).
- 1:13 PM Changeset in webkit [210487] by
-
- 3 edits in trunk/Tools
MiniBrowser window gets smaller each time it is instantiated
https://bugs.webkit.org/show_bug.cgi?id=166807
Reviewed by Andy Estes.
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController windowDidLoad]):
- MiniBrowser/mac/BrowserWindow.xib:
Turn on full-window content view support with IB, instead of waiting
until after the views have been loaded. This seems to resolve the
longstanding ever-shrinking-window problem.
- 1:12 PM Changeset in webkit [210486] by
-
- 2 edits in trunk/Tools
Add indent/outdent items to MiniBrowser's new format menu
https://bugs.webkit.org/show_bug.cgi?id=166805
Reviewed by Dan Bernstein.
- MiniBrowser/mac/MainMenu.xib:
- 1:11 PM Changeset in webkit [210485] by
-
- 2 edits in trunk/Tools
Add a stock Format menu to MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=166804
Reviewed by Andy Estes.
- MiniBrowser/mac/MainMenu.xib:
Many of the features automatically work with editable web views.
However, this seems to expose a bug where none of the font-related features
(Cmd-B, for example) work until the first time the font panel is shown,
per process, which will need to be investigated separately.
- 1:11 PM Changeset in webkit [210484] by
-
- 6 edits in trunk/Tools
Remove unused applicationWillTerminate methods from MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=166803
Reviewed by Andy Estes.
- MiniBrowser/mac/AppDelegate.m:
(-[BrowserAppDelegate applicationWillTerminate:]): Deleted.
- MiniBrowser/mac/BrowserWindowController.h:
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController applicationTerminating]): Deleted.
- MiniBrowser/mac/WK1BrowserWindowController.m:
(-[WK1BrowserWindowController applicationTerminating]): Deleted.
- MiniBrowser/mac/WK2BrowserWindowController.m:
(-[WK2BrowserWindowController applicationTerminating]): Deleted.
- 1:10 PM Changeset in webkit [210483] by
-
- 8 edits in trunk/Tools
Add the ability to create empty contentEditable windows in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=166801
Reviewed by Wenson Hsieh.
- MiniBrowser/mac/AppDelegate.h:
- MiniBrowser/mac/AppDelegate.m:
(-[BrowserAppDelegate createBrowserWindowController:]):
(-[BrowserAppDelegate newWindow:]):
(-[BrowserAppDelegate newEditorWindow:]):
(-[BrowserAppDelegate openDocument:]):
(-[BrowserAppDelegate _updateNewWindowKeyEquivalents]):
- MiniBrowser/mac/BrowserWindowController.h:
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController loadHTMLString:]):
(-[BrowserWindowController toggleEditable:]):
- MiniBrowser/mac/MainMenu.xib:
- MiniBrowser/mac/WK1BrowserWindowController.m:
(-[WK1BrowserWindowController awakeFromNib]):
(-[WK1BrowserWindowController loadHTMLString:]):
(-[WK1BrowserWindowController validateMenuItem:]):
(-[WK1BrowserWindowController setEditable:]):
(-[WK1BrowserWindowController updateTitle:]):
- MiniBrowser/mac/WK2BrowserWindowController.m:
(-[WK2BrowserWindowController awakeFromNib]):
(-[WK2BrowserWindowController validateMenuItem:]):
(-[WK2BrowserWindowController setEditable:]):
(-[WK2BrowserWindowController updateTitle:]):
(-[WK2BrowserWindowController loadHTMLString:]):
Merge more functionality from WebEditingTester.
Add two menu items for creating empty editable WebKit1/2 windows.
Add a menu item to the Edit menu to toggle editability on any window.
- 1:09 PM Changeset in webkit [210482] by
-
- 7 edits in trunk/Tools
Implement find-in-page in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=166799
Reviewed by Andy Estes.
- MiniBrowser/mac/BrowserWindow.xib:
- MiniBrowser/mac/BrowserWindowController.h:
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController find:]): Deleted.
- MiniBrowser/mac/MainMenu.xib:
- MiniBrowser/mac/WK1BrowserWindowController.m:
(-[WK1BrowserWindowController toggleShrinkToFit:]):
(-[WK1BrowserWindowController find:]): Deleted.
- MiniBrowser/mac/WK2BrowserWindowController.m:
(-[WK2BrowserWindowController awakeFromNib]):
(-[WK2BrowserWindowController dealloc]):
(-[WK2BrowserWindowController validateMenuItem:]):
(-[WK2BrowserWindowController performTextFinderAction:]):
(-[WK2BrowserWindowController findBarView]):
(-[WK2BrowserWindowController setFindBarView:]):
(-[WK2BrowserWindowController isFindBarVisible]):
(-[WK2BrowserWindowController setFindBarVisible:]):
(-[WK2BrowserWindowController contentView]):
(-[WK2BrowserWindowController findBarViewDidChangeHeight]):
(-[WK2BrowserWindowController performFindPanelAction:]): Deleted.
(-[WK2BrowserWindowController find:]): Deleted.
Implement find-in-page using WKWebView's conformance to the NSTextFinderClient
protocol. At first glance, it's pretty broken, but vaguely works.
- 1:08 PM Changeset in webkit [210481] by
-
- 4 edits in trunk/Tools
Share the implementation of MiniBrowser view hiding functionality
https://bugs.webkit.org/show_bug.cgi?id=166800
Reviewed by Andy Estes.
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController showHideWebView:]):
(-[BrowserWindowController removeReinsertWebView:]):
- MiniBrowser/mac/WK1BrowserWindowController.m:
(-[WK1BrowserWindowController showHideWebView:]): Deleted.
(-[WK1BrowserWindowController removeReinsertWebView:]): Deleted.
- MiniBrowser/mac/WK2BrowserWindowController.m:
(-[WK2BrowserWindowController showHideWebView:]): Deleted.
(-[WK2BrowserWindowController removeReinsertWebView:]): Deleted.
Move the implementation of these two things to the shared superclass,
since they don't depend on WebKit-specific things.
Also, there was no reason to retain the (WK)WebView while it was unparented,
as the BrowserWindowController maintains a reference the entire time.
- 1:00 PM Changeset in webkit [210480] by
-
- 16 edits in trunk/Source
[QuickLook] Consolidate usage of QuickLookHandle into SubresourceLoader
https://bugs.webkit.org/show_bug.cgi?id=166713
Reviewed by Alex Christensen.
Source/WebCore:
QuickLook conversion was originally implemented by intercepting document loads at the
ResourceHandle level, with separate paths for NSURLConnection and CFURLConnection handles.
When QuickLook was ported to WebKit2, a third path was added in WebResourceLoader.
This change removes these three separate paths and implements a single conversion path in
SubresourceLoader, where QuickLook can intercept document loads regardless of the networking
API being used.
No change in behavior. Covered by existing tests.
- loader/ResourceLoader.h: Removed override from didCreateQuickLookHandle() since this
function is no longer declared in ResourceHandleClient.
- loader/SubresourceLoader.cpp:
(WebCore::SubresourceLoader::shouldCreateQuickLookHandleForResponse): Added a helper
function to check if a QuickLookHandle should be created for a response.
(WebCore::SubresourceLoader::didReceiveResponse): Created a QuickLookHandle if necessary
and stored it in the DocumentLoader.
(WebCore::SubresourceLoader::didReceiveData): If there is a QuickLookHandle, call
QuickLookHandle::didReceiveBuffer(), and return early if QuickLook is converting.
(WebCore::SubresourceLoader::didReceiveBuffer): Ditto for QuickLookHandle::didReceiveBuffer().
(WebCore::SubresourceLoader::didFinishLoading): Ditto for QuickLookHandle::didFinishLoading().
(WebCore::SubresourceLoader::didFail): If there is a QuickLookHandle, call QuickLookHandle::didFail().
- loader/SubresourceLoader.h: Declared shouldCreateQuickLookHandleForResponse().
- loader/ios/QuickLook.h: Removed declarations used by the ResourceHandles and declared new
functions used by SubresourceLoader.
- loader/ios/QuickLook.mm:
(WebCore::QuickLookHandle::QuickLookHandle): Removed the NSURLConnection * parameter, since
we’d now always pass nil.
(WebCore::QuickLookHandle::create): Removed create() functions used by ResourceHandles.
(WebCore::QuickLookHandle::didReceiveData): Added. Copies the data into an NSData, wraps it
in an NSArray, and passes it to didReceiveDataArray().
(WebCore::QuickLookHandle::didReceiveBuffer): Added. Creates a NSArray of NSData from the
SharedBuffer and passes it to didReceiveDataArray().
(-[WebQuickLookHandleAsDelegate initWithConnectionDelegate:]): Deleted.
(-[WebQuickLookHandleAsDelegate connection:didReceiveDataArray:]): Deleted.
(-[WebQuickLookHandleAsDelegate connection:didReceiveData:lengthReceived:]): Deleted.
(-[WebQuickLookHandleAsDelegate connectionDidFinishLoading:]): Deleted.
(-[WebQuickLookHandleAsDelegate connection:didFailWithError:]): Deleted.
(-[WebQuickLookHandleAsDelegate detachHandle]): Deleted.
(WebCore::QuickLookHandle::cfResponse): Deleted.
(WebCore::QuickLookHandle::didReceiveDataArray): Passed dataArray to m_converter and m_client.
- platform/SharedBuffer.h: Const-qualified createNSDataArray().
- platform/cocoa/SharedBufferCocoa.mm:
(WebCore::SharedBuffer::createNSDataArray): Ditto.
- platform/network/ResourceHandle.cpp: Stopped including QuickLook.h.
- platform/network/ResourceHandle.h: Removed m_quickLook.
(WebCore::ResourceHandle::quickLookHandle): Deleted.
- platform/network/ResourceHandleClient.h:
(WebCore::ResourceHandleClient::didCreateQuickLookHandle): Deleted.
- platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.cpp:
(WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didReceiveResponse): Removed QuickLook code.
(WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didReceiveData): Ditto.
(WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didFinishLoading): Ditto.
(WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didFail): Ditto.
(WebCore::SynchronousResourceHandleCFURLConnectionDelegate::didReceiveDataArray): Ditto.
- platform/network/mac/ResourceHandleMac.mm:
(WebCore::ResourceHandle::setQuickLookHandle): Deleted.
- platform/network/mac/WebCoreResourceHandleAsDelegate.mm:
(-[WebCoreResourceHandleAsDelegate connection:didReceiveResponse:]): Removed QuickLook code.
(-[WebCoreResourceHandleAsDelegate connection:didReceiveDataArray:]): Ditto.
(-[WebCoreResourceHandleAsDelegate connection:didReceiveData:lengthReceived:]): Ditto.
(-[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:]): Ditto.
(-[WebCoreResourceHandleAsDelegate connection:didFailWithError:]): Ditto.
Source/WebKit2:
- WebProcess/Network/WebResourceLoader.cpp:
(WebKit::WebResourceLoader::didReceiveResponse): Removed QuickLook code.
(WebKit::WebResourceLoader::didReceiveData): Ditto.
(WebKit::WebResourceLoader::didFinishResourceLoad): Ditto.
(WebKit::WebResourceLoader::didFailResourceLoad): Ditto.
(WebKit::WebResourceLoader::didReceiveResource): Ditto.
- 10:51 AM Changeset in webkit [210479] by
-
- 2 edits in trunk/Tools
Another attempt to fix the Mac CMake build after r210467.
- DumpRenderTree/PlatformMac.cmake:
- WebKitTestRunner/PlatformMac.cmake:
- 10:30 AM Changeset in webkit [210478] by
-
- 1 edit in trunk/Source/WebCore/testing/cocoa/WebArchiveDumpSupport.h
Attempt to fix the Mac CMake build after r210467.
- testing/cocoa/WebArchiveDumpSupport.h:
- 5:55 AM Changeset in webkit [210477] by
-
- 1 edit in trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
Attempt to fix the iOS Production build after r210467.
- WebCore.xcodeproj/project.pbxproj: