Changeset 160069 in webkit
- Timestamp:
- Dec 3, 2013, 9:25:13 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r160059 r160069 1 2013-12-03 Simon Fraser <simon.fraser@apple.com> 2 3 WKContentView should just use InitializeWebKit2() 4 https://bugs.webkit.org/show_bug.cgi?id=125209 5 6 Reviewed by Benjamin Poulain. 7 8 Rather than calling an motley selection of init fuctions, 9 WKContentView should use the one true init function, InitializeWebKit2(). 10 11 * Shared/WebKit2Initialize.cpp: On iOS, we need to call InitWebCoreThreadSystemInterface(). 12 (WebKit::InitializeWebKit2): 13 * UIProcess/API/ios/WKContentView.mm: Remove various unused #imports. 14 (-[WKContentView _commonInitializationWithContextRef:pageGroupRef:relatedToPage:]): 15 1 16 2013-12-03 Anders Carlsson <andersca@apple.com> 2 17 -
trunk/Source/WebKit2/Shared/WebKit2Initialize.cpp
r159001 r160069 36 36 #include "WebSystemInterface.h" 37 37 #endif 38 #if PLATFORM(IOS) 39 #import <WebCore/WebCoreThreadSystemInterface.h> 40 #endif 38 41 39 42 namespace WebKit { … … 43 46 #if PLATFORM(MAC) 44 47 InitWebCoreSystemInterface(); 48 #endif 49 #if PLATFORM(IOS) 50 InitWebCoreThreadSystemInterface(); 45 51 #endif 46 52 -
trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm
r160031 r160069 29 29 #import "PageClientImplIOS.h" 30 30 #import "RemoteLayerTreeDrawingAreaProxy.h" 31 #import " UIWKRemoteView.h"31 #import "WebKit2Initialize.h" 32 32 #import "WKBrowsingContextControllerInternal.h" 33 33 #import "WKBrowsingContextGroupPrivate.h" … … 39 39 #import "WebPageGroup.h" 40 40 #import "WebSystemInterface.h" 41 #import <QuartzCore/CALayerHost.h>42 41 #import <UIKit/UIWindow_Private.h> 43 42 #import <WebCore/ViewportArguments.h> 44 #import <WebCore/WebCoreThreadSystemInterface.h>45 43 #import <wtf/RetainPtr.h> 46 44 … … 142 140 self.backgroundColor = [UIColor blackColor]; 143 141 144 InitWebCoreThreadSystemInterface(); 145 InitWebCoreSystemInterface(); 142 InitializeWebKit2(); 146 143 RunLoop::initializeMainRunLoop(); 147 144
Note:
See TracChangeset
for help on using the changeset viewer.