Changeset 216473 in webkit
- Timestamp:
- May 8, 2017, 7:22:45 PM (8 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 43 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r216463 r216473 1 2017-05-08 Alex Christensen <achristensen@webkit.org> 2 3 Reduce PassRefPtr use in WebKit2 4 https://bugs.webkit.org/show_bug.cgi?id=171831 5 6 Reviewed by Chris Dumez. 7 8 * UIProcess/API/C/WKPageGroup.cpp: 9 (WKPageGroupCreateWithIdentifier): 10 * UIProcess/GenericCallback.h: 11 (WebKit::GenericCallback::create): 12 (WebKit::CallbackMap::put): 13 * UIProcess/StatisticsRequest.cpp: 14 (WebKit::StatisticsRequest::StatisticsRequest): 15 * UIProcess/StatisticsRequest.h: 16 (WebKit::StatisticsRequest::create): 17 * UIProcess/TextChecker.h: 18 * UIProcess/TextCheckerCompletion.cpp: 19 (WebKit::TextCheckerCompletion::create): 20 * UIProcess/TextCheckerCompletion.h: 21 * UIProcess/WebColorPicker.h: 22 (WebKit::WebColorPicker::create): 23 * UIProcess/WebConnectionToWebProcess.cpp: 24 (WebKit::WebConnectionToWebProcess::create): 25 * UIProcess/WebConnectionToWebProcess.h: 26 * UIProcess/WebContextInjectedBundleClient.cpp: 27 (WebKit::WebContextInjectedBundleClient::getInjectedBundleInitializationUserData): 28 * UIProcess/WebContextInjectedBundleClient.h: 29 * UIProcess/WebContextMenuListenerProxy.h: 30 (WebKit::WebContextMenuListenerProxy::create): 31 * UIProcess/WebCookieManagerProxy.cpp: 32 (WebKit::WebCookieManagerProxy::create): 33 * UIProcess/WebCookieManagerProxy.h: 34 * UIProcess/WebEditCommandProxy.h: 35 (WebKit::WebEditCommandProxy::create): 36 * UIProcess/WebFormSubmissionListenerProxy.h: 37 (WebKit::WebFormSubmissionListenerProxy::create): 38 * UIProcess/WebFrameListenerProxy.h: 39 * UIProcess/WebFrameProxy.h: 40 (WebKit::WebFrameProxy::create): 41 * UIProcess/WebFullScreenManagerProxy.cpp: 42 (WebKit::WebFullScreenManagerProxy::create): 43 * UIProcess/WebFullScreenManagerProxy.h: 44 * UIProcess/WebGeolocationManagerProxy.cpp: 45 (WebKit::WebGeolocationManagerProxy::create): 46 * UIProcess/WebGeolocationManagerProxy.h: 47 * UIProcess/WebIconDatabase.cpp: 48 (WebKit::WebIconDatabase::create): 49 (WebKit::WebIconDatabase::iconDataForPageURL): 50 * UIProcess/WebIconDatabase.h: 51 * UIProcess/WebMediaSessionFocusManager.cpp: 52 (WebKit::WebMediaSessionFocusManager::create): 53 * UIProcess/WebMediaSessionFocusManager.h: 54 * UIProcess/WebOpenPanelResultListenerProxy.h: 55 (WebKit::WebOpenPanelResultListenerProxy::create): 56 * UIProcess/WebPageGroup.cpp: 57 (WebKit::WebPageGroup::create): 58 * UIProcess/WebPageGroup.h: 59 * UIProcess/WebPageProxy.cpp: 60 (WebKit::WebPageProxy::forceRepaint): 61 (WebKit::WebPageProxy::computePagesForPrinting): 62 (WebKit::WebPageProxy::drawRectToImage): 63 (WebKit::WebPageProxy::drawPagesToPDF): 64 (WebKit::WebPageProxy::drawPagesForPrinting): 65 (WebKit::WebPageProxy::callAfterNextPresentationUpdate): 66 * UIProcess/WebPageProxy.h: 67 * UIProcess/ios/TextCheckerIOS.mm: 68 (WebKit::TextChecker::requestCheckingOfString): 69 * UIProcess/mac/TextCheckerMac.mm: 70 (WebKit::TextChecker::requestCheckingOfString): 71 * UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.h: 72 * UIProcess/mac/WKFullScreenWindowController.mm: 73 (-[WKFullScreenWindowController finishedExitFullScreenAnimation:]): 74 * UIProcess/mac/WKPrintingView.mm: 75 (-[WKPrintingView _preparePDFDataForPrintingOnSecondaryThread]): 76 (-[WKPrintingView _drawPreview:]): 77 * WebProcess/Plugins/Netscape/NetscapePlugin.cpp: 78 (WebKit::NetscapePlugin::loadURL): 79 (WebKit::NetscapePlugin::manualStreamDidReceiveResponse): 80 * WebProcess/Plugins/Netscape/NetscapePluginStream.cpp: 81 (WebKit::NetscapePluginStream::NetscapePluginStream): 82 * WebProcess/Plugins/Netscape/NetscapePluginStream.h: 83 (WebKit::NetscapePluginStream::create): 84 * WebProcess/WebCoreSupport/SessionStateConversion.cpp: 85 (WebKit::toFormData): 86 1 87 2017-05-08 Youenn Fablet <youenn@apple.com> 2 88 -
trunk/Source/WebKit2/UIProcess/API/C/WKPageGroup.cpp
r213696 r216473 46 46 { 47 47 auto pageGroup = WebPageGroup::create(toWTFString(identifier)); 48 return toAPI( pageGroup.leakRef());48 return toAPI(&pageGroup.leakRef()); 49 49 } 50 50 -
trunk/Source/WebKit2/UIProcess/GenericCallback.h
r213777 r216473 24 24 */ 25 25 26 #ifndef GenericCallback_h 27 #define GenericCallback_h 26 #pragma once 28 27 29 28 #include "APIError.h" … … 35 34 #include <wtf/Function.h> 36 35 #include <wtf/HashMap.h> 37 #include <wtf/PassRefPtr.h>38 36 #include <wtf/RefCounted.h> 39 37 #include <wtf/RunLoop.h> … … 96 94 typedef Function<void (T..., Error)> CallbackFunction; 97 95 98 static PassRefPtr<GenericCallback> create(CallbackFunction&& callback, const ProcessThrottler::BackgroundActivityToken& activityToken = nullptr)99 { 100 return adoptRef( new GenericCallback(WTFMove(callback), activityToken));96 static Ref<GenericCallback> create(CallbackFunction&& callback, const ProcessThrottler::BackgroundActivityToken& activityToken = nullptr) 97 { 98 return adoptRef(*new GenericCallback(WTFMove(callback), activityToken)); 101 99 } 102 100 … … 173 171 class CallbackMap { 174 172 public: 175 uint64_t put( PassRefPtr<CallbackBase>callback)173 uint64_t put(Ref<CallbackBase>&& callback) 176 174 { 177 175 ASSERT(!m_map.contains(callback->callbackID())); 178 176 179 177 uint64_t callbackID = callback->callbackID(); 180 m_map.set(callbackID, callback);178 m_map.set(callbackID, WTFMove(callback)); 181 179 return callbackID; 182 180 } … … 193 191 194 192 template<typename... T> 195 uint64_t put(std::function<void (T...)>function, const ProcessThrottler::BackgroundActivityToken& activityToken)193 uint64_t put(std::function<void(T...)>&& function, const ProcessThrottler::BackgroundActivityToken& activityToken) 196 194 { 197 195 auto callback = GenericCallbackType<sizeof...(T), T...>::type::create(WTFMove(function), activityToken); 198 return put( callback);196 return put(WTFMove(callback)); 199 197 } 200 198 201 199 template<typename... T> 202 uint64_t put(Function<void 200 uint64_t put(Function<void(T...)>&& function, const ProcessThrottler::BackgroundActivityToken& activityToken) 203 201 { 204 202 auto callback = GenericCallbackType<sizeof...(T), T...>::type::create(WTFMove(function), activityToken); 205 return put( callback);203 return put(WTFMove(callback)); 206 204 } 207 205 … … 226 224 227 225 } // namespace WebKit 228 229 #endif // GenericCallback_h -
trunk/Source/WebKit2/UIProcess/StatisticsRequest.cpp
r194496 r216473 32 32 namespace WebKit { 33 33 34 StatisticsRequest::StatisticsRequest( PassRefPtr<DictionaryCallback>callback)35 : m_callback( callback)34 StatisticsRequest::StatisticsRequest(Ref<DictionaryCallback>&& callback) 35 : m_callback(WTFMove(callback)) 36 36 { 37 37 } -
trunk/Source/WebKit2/UIProcess/StatisticsRequest.h
r177699 r216473 24 24 */ 25 25 26 #ifndef StatisticsRequest_h 27 #define StatisticsRequest_h 26 #pragma once 28 27 29 28 #include "GenericCallback.h" … … 45 44 class StatisticsRequest : public RefCounted<StatisticsRequest> { 46 45 public: 47 static PassRefPtr<StatisticsRequest> create(PassRefPtr<DictionaryCallback>callback)46 static Ref<StatisticsRequest> create(Ref<DictionaryCallback>&& callback) 48 47 { 49 return adoptRef( new StatisticsRequest(callback));48 return adoptRef(*new StatisticsRequest(WTFMove(callback))); 50 49 } 51 50 … … 57 56 58 57 private: 59 StatisticsRequest( PassRefPtr<DictionaryCallback>);58 StatisticsRequest(Ref<DictionaryCallback>&&); 60 59 61 60 HashSet<uint64_t> m_outstandingRequests; … … 66 65 67 66 } // namespace WebKit 68 69 #endif // StatisticsRequest_h -
trunk/Source/WebKit2/UIProcess/TextChecker.h
r206261 r216473 24 24 */ 25 25 26 #ifndef TextChecker_h 27 #define TextChecker_h 26 #pragma once 28 27 29 28 #include "TextCheckerCompletion.h" … … 87 86 static void learnWord(int64_t spellDocumentTag, const String& word); 88 87 static void ignoreWord(int64_t spellDocumentTag, const String& word); 89 static void requestCheckingOfString( PassRefPtr<TextCheckerCompletion>, int32_t insertionPoint);88 static void requestCheckingOfString(Ref<TextCheckerCompletion>&&, int32_t insertionPoint); 90 89 }; 91 90 92 91 } // namespace WebKit 93 94 #endif // TextChecker_h -
trunk/Source/WebKit2/UIProcess/TextCheckerCompletion.cpp
r144436 r216473 31 31 namespace WebKit { 32 32 33 PassRefPtr<TextCheckerCompletion> TextCheckerCompletion::create(uint64_t requestID, const TextCheckingRequestData& requestData, WebPageProxy* page)33 Ref<TextCheckerCompletion> TextCheckerCompletion::create(uint64_t requestID, const TextCheckingRequestData& requestData, WebPageProxy* page) 34 34 { 35 return adoptRef( new TextCheckerCompletion(requestID, requestData, page));35 return adoptRef(*new TextCheckerCompletion(requestID, requestData, page)); 36 36 } 37 37 -
trunk/Source/WebKit2/UIProcess/TextCheckerCompletion.h
r144436 r216473 24 24 */ 25 25 26 #ifndef TextCheckerCompletion_h 27 #define TextCheckerCompletion_h 26 #pragma once 28 27 29 28 #include "WebPageProxy.h" … … 35 34 class TextCheckerCompletion : public RefCounted<TextCheckerCompletion> { 36 35 public: 37 static PassRefPtr<TextCheckerCompletion> create(uint64_t requestID, const WebCore::TextCheckingRequestData&, WebPageProxy*);36 static Ref<TextCheckerCompletion> create(uint64_t requestID, const WebCore::TextCheckingRequestData&, WebPageProxy*); 38 37 39 38 const WebCore::TextCheckingRequestData& textCheckingRequestData() const; … … 51 50 52 51 } // namespace WebKit 53 54 #endif // TextCheckerCompletion_h -
trunk/Source/WebKit2/UIProcess/WebColorPicker.h
r153541 r216473 24 24 */ 25 25 26 #ifndef WebColorPicker_h 27 #define WebColorPicker_h 26 #pragma once 28 27 29 28 #if ENABLE(INPUT_TYPE_COLOR) … … 51 50 }; 52 51 53 static PassRefPtr<WebColorPicker> create(Client* client)52 static Ref<WebColorPicker> create(Client* client) 54 53 { 55 return adoptRef( new WebColorPicker(client));54 return adoptRef(*new WebColorPicker(client)); 56 55 } 57 56 … … 73 72 74 73 #endif // ENABLE(INPUT_TYPE_COLOR) 75 76 #endif // WebColorPicker_h -
trunk/Source/WebKit2/UIProcess/WebConnectionToWebProcess.cpp
r186464 r216473 32 32 namespace WebKit { 33 33 34 PassRefPtr<WebConnectionToWebProcess> WebConnectionToWebProcess::create(WebProcessProxy* process)34 Ref<WebConnectionToWebProcess> WebConnectionToWebProcess::create(WebProcessProxy* process) 35 35 { 36 return adoptRef( new WebConnectionToWebProcess(process));36 return adoptRef(*new WebConnectionToWebProcess(process)); 37 37 } 38 38 -
trunk/Source/WebKit2/UIProcess/WebConnectionToWebProcess.h
r197563 r216473 24 24 */ 25 25 26 #ifndef WebConnectionToWebProcess_h 27 #define WebConnectionToWebProcess_h 26 #pragma once 28 27 29 28 #include "WebConnection.h" … … 35 34 class WebConnectionToWebProcess : public WebConnection { 36 35 public: 37 static PassRefPtr<WebConnectionToWebProcess> create(WebProcessProxy*);36 static Ref<WebConnectionToWebProcess> create(WebProcessProxy*); 38 37 39 38 WebProcessProxy* webProcessProxy() const { return m_process; } … … 57 56 58 57 } // namespace WebKit 59 60 #endif // WebConnectionToWebProcess_h -
trunk/Source/WebKit2/UIProcess/WebContextInjectedBundleClient.cpp
r189442 r216473 53 53 } 54 54 55 PassRefPtr<API::Object> WebContextInjectedBundleClient::getInjectedBundleInitializationUserData(WebProcessPool* processPool)55 RefPtr<API::Object> WebContextInjectedBundleClient::getInjectedBundleInitializationUserData(WebProcessPool* processPool) 56 56 { 57 57 if (!m_client.getInjectedBundleInitializationUserData) 58 return 0;58 return nullptr; 59 59 60 60 return adoptRef(toImpl(m_client.getInjectedBundleInitializationUserData(toAPI(processPool), m_client.base.clientInfo))); -
trunk/Source/WebKit2/UIProcess/WebContextInjectedBundleClient.h
r177692 r216473 24 24 */ 25 25 26 #ifndef WebContextInjectedBundleClient_h 27 #define WebContextInjectedBundleClient_h 26 #pragma once 28 27 29 28 #include "APIClient.h" … … 47 46 void didReceiveMessageFromInjectedBundle(WebProcessPool*, const String&, API::Object*); 48 47 void didReceiveSynchronousMessageFromInjectedBundle(WebProcessPool*, const String&, API::Object*, RefPtr<API::Object>& returnData); 49 PassRefPtr<API::Object> getInjectedBundleInitializationUserData(WebProcessPool*);48 RefPtr<API::Object> getInjectedBundleInitializationUserData(WebProcessPool*); 50 49 }; 51 50 52 51 } // namespace WebKit 53 54 #endif // WebContextInjectedBundleClient_h -
trunk/Source/WebKit2/UIProcess/WebContextMenuListenerProxy.h
r207558 r216473 39 39 class WebContextMenuListenerProxy : public API::ObjectImpl<API::Object::Type::ContextMenuListener> { 40 40 public: 41 static PassRefPtr<WebContextMenuListenerProxy> create(WebContextMenuProxy* contextMenuMac)41 static Ref<WebContextMenuListenerProxy> create(WebContextMenuProxy* contextMenuMac) 42 42 { 43 return adoptRef( new WebContextMenuListenerProxy(contextMenuMac));43 return adoptRef(*new WebContextMenuListenerProxy(contextMenuMac)); 44 44 } 45 45 -
trunk/Source/WebKit2/UIProcess/WebCookieManagerProxy.cpp
r214078 r216473 45 45 } 46 46 47 PassRefPtr<WebCookieManagerProxy> WebCookieManagerProxy::create(WebProcessPool* processPool)48 { 49 return adoptRef( new WebCookieManagerProxy(processPool));47 Ref<WebCookieManagerProxy> WebCookieManagerProxy::create(WebProcessPool* processPool) 48 { 49 return adoptRef(*new WebCookieManagerProxy(processPool)); 50 50 } 51 51 -
trunk/Source/WebKit2/UIProcess/WebCookieManagerProxy.h
r214078 r216473 24 24 */ 25 25 26 #ifndef WebCookieManagerProxy_h 27 #define WebCookieManagerProxy_h 26 #pragma once 28 27 29 28 #include "APIObject.h" … … 62 61 static const char* supplementName(); 63 62 64 static PassRefPtr<WebCookieManagerProxy> create(WebProcessPool*);63 static Ref<WebCookieManagerProxy> create(WebProcessPool*); 65 64 virtual ~WebCookieManagerProxy(); 66 65 … … 151 150 152 151 } // namespace WebKit 153 154 #endif // WebCookieManagerProxy_h -
trunk/Source/WebKit2/UIProcess/WebEditCommandProxy.h
r160384 r216473 24 24 */ 25 25 26 #ifndef WebEditCommandProxy_h 27 #define WebEditCommandProxy_h 26 #pragma once 28 27 29 28 #include "APIObject.h" … … 39 38 class WebEditCommandProxy : public API::ObjectImpl<API::Object::Type::EditCommandProxy> { 40 39 public: 41 static PassRefPtr<WebEditCommandProxy> create(uint64_t commandID, WebCore::EditAction editAction, WebPageProxy* page)40 static Ref<WebEditCommandProxy> create(uint64_t commandID, WebCore::EditAction editAction, WebPageProxy* page) 42 41 { 43 return adoptRef( new WebEditCommandProxy(commandID, editAction, page));42 return adoptRef(*new WebEditCommandProxy(commandID, editAction, page)); 44 43 } 45 44 ~WebEditCommandProxy(); … … 64 63 65 64 } // namespace WebKit 66 67 #endif // WebEditCommandProxy_h -
trunk/Source/WebKit2/UIProcess/WebFormSubmissionListenerProxy.h
r209871 r216473 43 43 static const Type APIType = Type::FormSubmissionListener; 44 44 45 static PassRefPtr<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID)45 static Ref<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) 46 46 { 47 return adoptRef( new WebFormSubmissionListenerProxy(frame, listenerID));47 return adoptRef(*new WebFormSubmissionListenerProxy(frame, listenerID)); 48 48 } 49 49 -
trunk/Source/WebKit2/UIProcess/WebFrameListenerProxy.h
r209558 r216473 29 29 #include "APIObject.h" 30 30 #include <WebCore/FrameLoaderTypes.h> 31 #include <wtf/PassRefPtr.h>32 31 #include <wtf/Ref.h> 33 32 #include <wtf/RefPtr.h> -
trunk/Source/WebKit2/UIProcess/WebFrameProxy.h
r213877 r216473 33 33 #include <wtf/Forward.h> 34 34 #include <wtf/Function.h> 35 #include <wtf/PassRefPtr.h>36 35 #include <wtf/text/WTFString.h> 37 36 … … 60 59 class WebFrameProxy : public API::ObjectImpl<API::Object::Type::Frame> { 61 60 public: 62 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID)61 static Ref<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID) 63 62 { 64 return adoptRef( new WebFrameProxy(page, frameID));63 return adoptRef(*new WebFrameProxy(page, frameID)); 65 64 } 66 65 -
trunk/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp
r207820 r216473 40 40 namespace WebKit { 41 41 42 PassRefPtr<WebFullScreenManagerProxy> WebFullScreenManagerProxy::create(WebPageProxy& page, WebFullScreenManagerProxyClient& client)42 Ref<WebFullScreenManagerProxy> WebFullScreenManagerProxy::create(WebPageProxy& page, WebFullScreenManagerProxyClient& client) 43 43 { 44 return adoptRef( new WebFullScreenManagerProxy(page, client));44 return adoptRef(*new WebFullScreenManagerProxy(page, client)); 45 45 } 46 46 -
trunk/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.h
r204668 r216473 24 24 */ 25 25 26 #ifndef WebFullScreenManagerProxy_h 27 #define WebFullScreenManagerProxy_h 26 #pragma once 28 27 29 28 #if ENABLE(FULLSCREEN_API) 30 29 31 30 #include "MessageReceiver.h" 32 #include <wtf/PassRefPtr.h>33 31 #include <wtf/RefCounted.h> 34 32 #include <wtf/RefPtr.h> … … 56 54 class WebFullScreenManagerProxy : public RefCounted<WebFullScreenManagerProxy>, public IPC::MessageReceiver { 57 55 public: 58 static PassRefPtr<WebFullScreenManagerProxy> create(WebPageProxy&, WebFullScreenManagerProxyClient&);56 static Ref<WebFullScreenManagerProxy> create(WebPageProxy&, WebFullScreenManagerProxyClient&); 59 57 virtual ~WebFullScreenManagerProxy(); 60 58 … … 92 90 93 91 #endif // ENABLE(FULLSCREEN_API) 94 95 #endif // WebFullScreenManagerProxy_h -
trunk/Source/WebKit2/UIProcess/WebGeolocationManagerProxy.cpp
r205183 r216473 38 38 } 39 39 40 PassRefPtr<WebGeolocationManagerProxy> WebGeolocationManagerProxy::create(WebProcessPool* processPool)40 Ref<WebGeolocationManagerProxy> WebGeolocationManagerProxy::create(WebProcessPool* processPool) 41 41 { 42 return adoptRef( new WebGeolocationManagerProxy(processPool));42 return adoptRef(*new WebGeolocationManagerProxy(processPool)); 43 43 } 44 44 -
trunk/Source/WebKit2/UIProcess/WebGeolocationManagerProxy.h
r204668 r216473 24 24 */ 25 25 26 #ifndef WebGeolocationManagerProxy_h 27 #define WebGeolocationManagerProxy_h 26 #pragma once 28 27 29 28 #include "APIObject.h" … … 44 43 static const char* supplementName(); 45 44 46 static PassRefPtr<WebGeolocationManagerProxy> create(WebProcessPool*);45 static Ref<WebGeolocationManagerProxy> create(WebProcessPool*); 47 46 48 47 void initializeProvider(const WKGeolocationProviderBase*); … … 84 83 85 84 } // namespace WebKit 86 87 #endif // WebGeolocationManagerProxy_h -
trunk/Source/WebKit2/UIProcess/WebIconDatabase.cpp
r210845 r216473 40 40 namespace WebKit { 41 41 42 PassRefPtr<WebIconDatabase> WebIconDatabase::create(WebProcessPool* processPool)43 { 44 return adoptRef( new WebIconDatabase(*processPool));42 Ref<WebIconDatabase> WebIconDatabase::create(WebProcessPool* processPool) 43 { 44 return adoptRef(*new WebIconDatabase(*processPool)); 45 45 } 46 46 … … 316 316 } 317 317 318 PassRefPtr<API::Data> WebIconDatabase::iconDataForPageURL(const String& pageURL)318 RefPtr<API::Data> WebIconDatabase::iconDataForPageURL(const String& pageURL) 319 319 { 320 320 auto* image = imageForPageURL(pageURL); -
trunk/Source/WebKit2/UIProcess/WebIconDatabase.h
r205682 r216473 49 49 class WebIconDatabase : public API::ObjectImpl<API::Object::Type::IconDatabase>, private WebCore::IconDatabaseClient, private IPC::MessageReceiver { 50 50 public: 51 static PassRefPtr<WebIconDatabase> create(WebProcessPool*);51 static Ref<WebIconDatabase> create(WebProcessPool*); 52 52 virtual ~WebIconDatabase(); 53 53 … … 72 72 WebCore::Image* imageForPageURL(const String&, const WebCore::IntSize& iconSize = WebCore::IntSize(32, 32)); 73 73 WebCore::NativeImagePtr nativeImageForPageURL(const String&, const WebCore::IntSize& iconSize = WebCore::IntSize(32, 32)); 74 PassRefPtr<API::Data> iconDataForPageURL(const String& pageURL);74 RefPtr<API::Data> iconDataForPageURL(const String& pageURL); 75 75 76 76 bool isOpen(); -
trunk/Source/WebKit2/UIProcess/WebMediaSessionFocusManager.cpp
r188775 r216473 38 38 } 39 39 40 PassRefPtr<WebMediaSessionFocusManager> WebMediaSessionFocusManager::create(WebProcessPool* processPool)40 Ref<WebMediaSessionFocusManager> WebMediaSessionFocusManager::create(WebProcessPool* processPool) 41 41 { 42 return adoptRef( new WebMediaSessionFocusManager(processPool));42 return adoptRef(*new WebMediaSessionFocusManager(processPool)); 43 43 } 44 44 -
trunk/Source/WebKit2/UIProcess/WebMediaSessionFocusManager.h
r197563 r216473 24 24 */ 25 25 26 #ifndef WebMediaSessionFocusManager_h 27 #define WebMediaSessionFocusManager_h 26 #pragma once 28 27 29 28 #if ENABLE(MEDIA_SESSION) … … 42 41 static const char* supplementName(); 43 42 44 static PassRefPtr<WebMediaSessionFocusManager> create(WebProcessPool*);43 static Ref<WebMediaSessionFocusManager> create(WebProcessPool*); 45 44 46 45 void initializeClient(const WKMediaSessionFocusManagerClientBase*); … … 73 72 74 73 #endif // ENABLE(MEDIA_SESSION) 75 76 #endif /* WebMediaSessionFocusManager_h */ -
trunk/Source/WebKit2/UIProcess/WebOpenPanelResultListenerProxy.h
r199558 r216473 24 24 */ 25 25 26 #ifndef WebOpenPanelResultListenerProxy_h 27 #define WebOpenPanelResultListenerProxy_h 26 #pragma once 28 27 29 28 #include "APIObject.h" 30 29 #include <wtf/Forward.h> 31 #include <wtf/PassRefPtr.h>32 30 #include <wtf/RefPtr.h> 33 31 #include <wtf/Vector.h> … … 45 43 class WebOpenPanelResultListenerProxy : public API::ObjectImpl<API::Object::Type::FramePolicyListener> { 46 44 public: 47 static PassRefPtr<WebOpenPanelResultListenerProxy> create(WebPageProxy* page)45 static Ref<WebOpenPanelResultListenerProxy> create(WebPageProxy* page) 48 46 { 49 return adoptRef( new WebOpenPanelResultListenerProxy(page));47 return adoptRef(*new WebOpenPanelResultListenerProxy(page)); 50 48 } 51 49 … … 67 65 68 66 } // namespace WebKit 69 70 #endif // WebOpenPanelResultListenerProxy_h -
trunk/Source/WebKit2/UIProcess/WebPageGroup.cpp
r213696 r216473 55 55 } 56 56 57 PassRefPtr<WebPageGroup> WebPageGroup::create(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient)57 Ref<WebPageGroup> WebPageGroup::create(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient) 58 58 { 59 return adoptRef( new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient));59 return adoptRef(*new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient)); 60 60 } 61 61 -
trunk/Source/WebKit2/UIProcess/WebPageGroup.h
r216348 r216473 44 44 public: 45 45 WebPageGroup(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true); 46 static PassRefPtr<WebPageGroup> create(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true);46 static Ref<WebPageGroup> create(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true); 47 47 static Ref<WebPageGroup> createNonNull(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true); 48 48 static WebPageGroup* get(uint64_t pageGroupID); -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r216249 r216473 3035 3035 } 3036 3036 3037 void WebPageProxy::forceRepaint(PassRefPtr<VoidCallback> prpCallback) 3038 { 3039 RefPtr<VoidCallback> callback = prpCallback; 3037 void WebPageProxy::forceRepaint(RefPtr<VoidCallback>&& callback) 3038 { 3040 3039 if (!isValid()) { 3041 3040 // FIXME: If the page is invalid we should not call the callback. It'd be better to just return false from forceRepaint. … … 3044 3043 } 3045 3044 3046 std::function<void (CallbackBase::Error)> didForceRepaintCallback = [this, callback](CallbackBase::Error error){3045 Function<void(CallbackBase::Error)> didForceRepaintCallback = [this, callback = WTFMove(callback)](CallbackBase::Error error) mutable { 3047 3046 if (error != CallbackBase::Error::None) { 3048 3047 callback->invalidate(error); … … 3055 3054 } 3056 3055 3057 callAfterNextPresentationUpdate([callback ](CallbackBase::Error error) {3056 callAfterNextPresentationUpdate([callback = WTFMove(callback)](CallbackBase::Error error) { 3058 3057 if (error != CallbackBase::Error::None) { 3059 3058 callback->invalidate(error); … … 3065 3064 }; 3066 3065 3067 uint64_t callbackID = m_callbacks.put( didForceRepaintCallback, m_process->throttler().backgroundActivityToken());3066 uint64_t callbackID = m_callbacks.put(WTFMove(didForceRepaintCallback), m_process->throttler().backgroundActivityToken()); 3068 3067 m_drawingArea->waitForBackingStoreUpdateOnNextPaint(); 3069 3068 m_process->send(Messages::WebPage::ForceRepaint(callbackID), m_pageID); … … 5993 5992 } 5994 5993 5995 void WebPageProxy::computePagesForPrinting(WebFrameProxy* frame, const PrintInfo& printInfo, PassRefPtr<ComputedPagesCallback> prpCallback) 5996 { 5997 RefPtr<ComputedPagesCallback> callback = prpCallback; 5994 void WebPageProxy::computePagesForPrinting(WebFrameProxy* frame, const PrintInfo& printInfo, Ref<ComputedPagesCallback>&& callback) 5995 { 5998 5996 if (!isValid()) { 5999 5997 callback->invalidate(); … … 6002 6000 6003 6001 uint64_t callbackID = callback->callbackID(); 6004 m_callbacks.put( callback);6002 m_callbacks.put(WTFMove(callback)); 6005 6003 m_isInPrintingMode = true; 6006 6004 m_process->send(Messages::WebPage::ComputePagesForPrinting(frame->frameID(), printInfo, callbackID), m_pageID, printingSendOptions(m_isPerformingDOMPrintOperation)); … … 6008 6006 6009 6007 #if PLATFORM(COCOA) 6010 void WebPageProxy::drawRectToImage(WebFrameProxy* frame, const PrintInfo& printInfo, const IntRect& rect, const WebCore::IntSize& imageSize, PassRefPtr<ImageCallback> prpCallback) 6011 { 6012 RefPtr<ImageCallback> callback = prpCallback; 6008 void WebPageProxy::drawRectToImage(WebFrameProxy* frame, const PrintInfo& printInfo, const IntRect& rect, const WebCore::IntSize& imageSize, Ref<ImageCallback>&& callback) 6009 { 6013 6010 if (!isValid()) { 6014 6011 callback->invalidate(); … … 6017 6014 6018 6015 uint64_t callbackID = callback->callbackID(); 6019 m_callbacks.put( callback);6016 m_callbacks.put(WTFMove(callback)); 6020 6017 m_process->send(Messages::WebPage::DrawRectToImage(frame->frameID(), printInfo, rect, imageSize, callbackID), m_pageID, printingSendOptions(m_isPerformingDOMPrintOperation)); 6021 6018 } 6022 6019 6023 void WebPageProxy::drawPagesToPDF(WebFrameProxy* frame, const PrintInfo& printInfo, uint32_t first, uint32_t count, PassRefPtr<DataCallback> prpCallback) 6024 { 6025 RefPtr<DataCallback> callback = prpCallback; 6020 void WebPageProxy::drawPagesToPDF(WebFrameProxy* frame, const PrintInfo& printInfo, uint32_t first, uint32_t count, Ref<DataCallback>&& callback) 6021 { 6026 6022 if (!isValid()) { 6027 6023 callback->invalidate(); … … 6030 6026 6031 6027 uint64_t callbackID = callback->callbackID(); 6032 m_callbacks.put( callback);6028 m_callbacks.put(WTFMove(callback)); 6033 6029 m_process->send(Messages::WebPage::DrawPagesToPDF(frame->frameID(), printInfo, first, count, callbackID), m_pageID, printingSendOptions(m_isPerformingDOMPrintOperation)); 6034 6030 } 6035 6031 #elif PLATFORM(GTK) 6036 void WebPageProxy::drawPagesForPrinting(WebFrameProxy* frame, const PrintInfo& printInfo, PassRefPtr<PrintFinishedCallback> didPrintCallback) 6037 { 6038 RefPtr<PrintFinishedCallback> callback = didPrintCallback; 6032 void WebPageProxy::drawPagesForPrinting(WebFrameProxy* frame, const PrintInfo& printInfo, Ref<PrintFinishedCallback>&& callback) 6033 { 6039 6034 if (!isValid()) { 6040 6035 callback->invalidate(); … … 6043 6038 6044 6039 uint64_t callbackID = callback->callbackID(); 6045 m_callbacks.put( callback);6040 m_callbacks.put(WTFMove(callback)); 6046 6041 m_isInPrintingMode = true; 6047 6042 m_process->send(Messages::WebPage::DrawPagesForPrinting(frame->frameID(), printInfo, callbackID), m_pageID, printingSendOptions(m_isPerformingDOMPrintOperation)); … … 6745 6740 } 6746 6741 6747 m_drawingArea->dispatchAfterEnsuringDrawing( callback);6742 m_drawingArea->dispatchAfterEnsuringDrawing(WTFMove(callback)); 6748 6743 } 6749 6744 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.h
r216352 r216473 808 808 void getWebArchiveOfFrame(WebFrameProxy*, Function<void (API::Data*, CallbackBase::Error)>&&); 809 809 void runJavaScriptInMainFrame(const String&, std::function<void (API::SerializedScriptValue*, bool hadException, const WebCore::ExceptionDetails&, CallbackBase::Error)> callbackFunction); 810 void forceRepaint( PassRefPtr<VoidCallback>);810 void forceRepaint(RefPtr<VoidCallback>&&); 811 811 812 812 float headerHeight(WebFrameProxy*); … … 937 937 void beginPrinting(WebFrameProxy*, const PrintInfo&); 938 938 void endPrinting(); 939 void computePagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<ComputedPagesCallback>);940 #if PLATFORM(COCOA) 941 void drawRectToImage(WebFrameProxy*, const PrintInfo&, const WebCore::IntRect&, const WebCore::IntSize&, PassRefPtr<ImageCallback>);942 void drawPagesToPDF(WebFrameProxy*, const PrintInfo&, uint32_t first, uint32_t count, PassRefPtr<DataCallback>);939 void computePagesForPrinting(WebFrameProxy*, const PrintInfo&, Ref<ComputedPagesCallback>&&); 940 #if PLATFORM(COCOA) 941 void drawRectToImage(WebFrameProxy*, const PrintInfo&, const WebCore::IntRect&, const WebCore::IntSize&, Ref<ImageCallback>&&); 942 void drawPagesToPDF(WebFrameProxy*, const PrintInfo&, uint32_t first, uint32_t count, Ref<DataCallback>&&); 943 943 #if PLATFORM(IOS) 944 944 uint32_t computePagesForPrintingAndDrawToPDF(uint64_t frameID, const PrintInfo&, DrawToPDFCallback::CallbackFunction&&); … … 946 946 #endif 947 947 #elif PLATFORM(GTK) 948 void drawPagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<PrintFinishedCallback>);948 void drawPagesForPrinting(WebFrameProxy*, const PrintInfo&, Ref<PrintFinishedCallback>&&); 949 949 #endif 950 950 -
trunk/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp
r209907 r216473 208 208 } 209 209 210 void TextChecker::requestCheckingOfString(PassRefPtr<TextCheckerCompletion> completion, int32_t insertionPoint) 211 { 212 #if ENABLE(SPELLCHECK) 213 if (!completion) 214 return; 215 210 void TextChecker::requestCheckingOfString(Ref<TextCheckerCompletion>&& completion, int32_t insertionPoint) 211 { 212 #if ENABLE(SPELLCHECK) 216 213 TextCheckingRequestData request = completion->textCheckingRequestData(); 217 214 ASSERT(request.sequence() != unrequestedTextCheckingSequence); -
trunk/Source/WebKit2/UIProcess/ios/TextCheckerIOS.mm
r206261 r216473 200 200 } 201 201 202 void TextChecker::requestCheckingOfString( PassRefPtr<TextCheckerCompletion>, int32_t)202 void TextChecker::requestCheckingOfString(Ref<TextCheckerCompletion>&&, int32_t) 203 203 { 204 204 notImplemented(); -
trunk/Source/WebKit2/UIProcess/mac/TextCheckerMac.mm
r206261 r216473 501 501 } 502 502 503 void TextChecker::requestCheckingOfString( PassRefPtr<TextCheckerCompletion>, int32_t)503 void TextChecker::requestCheckingOfString(Ref<TextCheckerCompletion>&&, int32_t) 504 504 { 505 505 notImplemented(); -
trunk/Source/WebKit2/UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.h
r208415 r216473 24 24 */ 25 25 26 #ifndef TiledCoreAnimationDrawingAreaProxy_h 27 #define TiledCoreAnimationDrawingAreaProxy_h 26 #pragma once 28 27 29 28 #if !PLATFORM(IOS) … … 81 80 82 81 #endif // !PLATFORM(IOS) 83 84 #endif // TiledCoreAnimationDrawingAreaProxy_h -
trunk/Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.mm
r212398 r216473 427 427 [self completeFinishExitFullScreenAnimationAfterRepaint]; 428 428 }); 429 _page->forceRepaint(_repaintCallback );429 _page->forceRepaint(_repaintCallback.copyRef()); 430 430 } 431 431 -
trunk/Source/WebKit2/UIProcess/mac/WKPrintingView.mm
r208347 r216473 266 266 267 267 IPCCallbackContext* context = new IPCCallbackContext; 268 RefPtr<DataCallback>callback = DataCallback::create([context](API::Data* data, WebKit::CallbackBase::Error) {268 auto callback = DataCallback::create([context](API::Data* data, WebKit::CallbackBase::Error) { 269 269 ASSERT(RunLoop::isMain()); 270 270 … … 287 287 context->callbackID = callback->callbackID(); 288 288 289 _webFrame->page()->drawPagesToPDF(_webFrame.get(), printInfo, firstPage - 1, lastPage - firstPage + 1, callback.get());289 _webFrame->page()->drawPagesToPDF(_webFrame.get(), printInfo, firstPage - 1, lastPage - firstPage + 1, WTFMove(callback)); 290 290 } 291 291 … … 518 518 519 519 IPCCallbackContext* context = new IPCCallbackContext; 520 RefPtr<ImageCallback>callback = ImageCallback::create([context](const ShareableBitmap::Handle& imageHandle, WebKit::CallbackBase::Error) {520 auto callback = ImageCallback::create([context](const ShareableBitmap::Handle& imageHandle, WebKit::CallbackBase::Error) { 521 521 std::unique_ptr<IPCCallbackContext> contextDeleter(context); 522 522 pageDidDrawToImage(imageHandle, context); … … 528 528 context->callbackID = callback->callbackID(); 529 529 530 _webFrame->page()->drawRectToImage(_webFrame.get(), PrintInfo([_printOperation printInfo]), scaledPrintingRect, imageSize, callback.get());530 _webFrame->page()->drawRectToImage(_webFrame.get(), PrintInfo([_printOperation printInfo]), scaledPrintingRect, imageSize, WTFMove(callback)); 531 531 return; 532 532 } -
trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp
r215167 r216473 170 170 if (target.isNull()) { 171 171 // The browser is going to send the data in a stream, create a plug-in stream. 172 auto pluginStream = NetscapePluginStream::create( this, requestID, urlString, sendNotification, notificationData);172 auto pluginStream = NetscapePluginStream::create(*this, requestID, urlString, sendNotification, notificationData); 173 173 ASSERT(!m_streams.contains(requestID)); 174 174 … … 898 898 ASSERT(!m_manualStream); 899 899 900 m_manualStream = NetscapePluginStream::create( this, 0, responseURL.string(), false, 0);900 m_manualStream = NetscapePluginStream::create(*this, 0, responseURL.string(), false, 0); 901 901 m_manualStream->didReceiveResponse(responseURL, streamLength, lastModifiedTime, mimeType, headers); 902 902 } -
trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.cpp
r215160 r216473 37 37 namespace WebKit { 38 38 39 NetscapePluginStream::NetscapePluginStream( PassRefPtr<NetscapePlugin>plugin, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData)40 : m_plugin( plugin)39 NetscapePluginStream::NetscapePluginStream(Ref<NetscapePlugin>&& plugin, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData) 40 : m_plugin(WTFMove(plugin)) 41 41 , m_streamID(streamID) 42 42 , m_requestURLString(requestURLString) -
trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginStream.h
r202611 r216473 24 24 */ 25 25 26 #ifndef NetscapePluginStream_h 27 #define NetscapePluginStream_h 26 #pragma once 28 27 29 28 #if ENABLE(NETSCAPE_PLUGIN_API) … … 33 32 #include <memory> 34 33 #include <wtf/Forward.h> 35 #include <wtf/PassRefPtr.h>36 34 #include <wtf/RefCounted.h> 37 35 #include <wtf/RefPtr.h> … … 49 47 class NetscapePluginStream : public RefCounted<NetscapePluginStream> { 50 48 public: 51 static Ref<NetscapePluginStream> create( PassRefPtr<NetscapePlugin>plugin, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData)49 static Ref<NetscapePluginStream> create(Ref<NetscapePlugin>&& plugin, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData) 52 50 { 53 return adoptRef(*new NetscapePluginStream( plugin, streamID, requestURLString, sendNotification, notificationData));51 return adoptRef(*new NetscapePluginStream(WTFMove(plugin), streamID, requestURLString, sendNotification, notificationData)); 54 52 } 55 53 ~NetscapePluginStream(); … … 72 70 73 71 private: 74 NetscapePluginStream( PassRefPtr<NetscapePlugin>, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData);72 NetscapePluginStream(Ref<NetscapePlugin>&&, uint64_t streamID, const String& requestURLString, bool sendNotification, void* notificationData); 75 73 76 74 bool start(const String& responseURLString, uint32_t streamLength, … … 84 82 void deliverDataToFile(const char* bytes, int length); 85 83 86 Ref Ptr<NetscapePlugin> m_plugin;84 Ref<NetscapePlugin> m_plugin; 87 85 uint64_t m_streamID; 88 86 … … 117 115 118 116 #endif // ENABLE(NETSCAPE_PLUGIN_API) 119 120 #endif // NetscapePluginStream_h -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/SessionStateConversion.cpp
r213590 r216473 123 123 } 124 124 125 static PassRefPtr<FormData> toFormData(const HTTPBody& httpBody)125 static Ref<FormData> toFormData(const HTTPBody& httpBody) 126 126 { 127 127 auto formData = FormData::create(); … … 143 143 } 144 144 145 return WTFMove(formData);145 return formData; 146 146 } 147 147
Note:
See TracChangeset
for help on using the changeset viewer.