Changeset 216448 in webkit
- Timestamp:
- May 8, 2017, 1:11:29 PM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r216446 r216448 1 2017-05-08 Alex Christensen <achristensen@webkit.org> 2 3 Reduce PassRefPtr use 4 https://bugs.webkit.org/show_bug.cgi?id=171809 5 6 Reviewed by Chris Dumez. 7 8 * platform/graphics/ca/PlatformCALayer.cpp: 9 (WebCore::PlatformCALayer::createCompatibleLayerOrTakeFromPool): 10 * platform/graphics/ca/PlatformCALayer.h: 11 * platform/graphics/ca/TileCoverageMap.cpp: 12 (WebCore::TileCoverageMap::TileCoverageMap): 13 * platform/graphics/ca/TileGrid.cpp: 14 (WebCore::TileGrid::TileGrid): 15 * platform/graphics/ca/cocoa/PlatformCALayerCocoa.h: 16 * platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm: 17 (PlatformCALayerCocoa::create): 18 (PlatformCALayerCocoa::clone): 19 (PlatformCALayerCocoa::animationForKey): 20 (PlatformCALayerCocoa::createCompatibleLayer): 21 1 22 2017-05-08 Jer Noble <jer.noble@apple.com> 2 23 -
trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp
r215750 r216448 357 357 result->setWantsDeepColorBackingStore(screenSupportsExtendedColor()); 358 358 359 return result;359 return WTFMove(result); 360 360 #elif PLATFORM(WIN) 361 361 return PlatformCALayerWin::create(layerType, owner); -
trunk/Source/WebCore/platform/graphics/ca/PlatformCALayer.cpp
r213940 r216448 168 168 } 169 169 170 PassRefPtr<PlatformCALayer> PlatformCALayer::createCompatibleLayerOrTakeFromPool(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client, IntSize size) 171 { 172 RefPtr<PlatformCALayer> layer; 173 174 if ((layer = layerPool().takeLayerWithSize(size))) { 175 layer->setOwner(client); 176 return WTFMove(layer); 177 } 178 179 layer = createCompatibleLayer(layerType, client); 170 Ref<PlatformCALayer> PlatformCALayer::createCompatibleLayerOrTakeFromPool(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client, IntSize size) 171 { 172 if (auto layerFromPool = layerPool().takeLayerWithSize(size)) { 173 layerFromPool->setOwner(client); 174 return layerFromPool.releaseNonNull(); 175 } 176 177 auto layer = createCompatibleLayer(layerType, client); 180 178 layer->setBounds(FloatRect(FloatPoint(), size)); 181 182 return WTFMove(layer); 179 return layer; 183 180 } 184 181 -
trunk/Source/WebCore/platform/graphics/ca/PlatformCALayer.h
r213940 r216448 30 30 #include <QuartzCore/CABase.h> 31 31 #include <wtf/CurrentTime.h> 32 #include <wtf/PassRefPtr.h>33 32 #include <wtf/RefCounted.h> 34 33 #include <wtf/RetainPtr.h> … … 83 82 enum FilterType { Linear, Nearest, Trilinear }; 84 83 85 virtual PassRefPtr<PlatformCALayer> clone(PlatformCALayerClient*) const = 0;84 virtual Ref<PlatformCALayer> clone(PlatformCALayerClient*) const = 0; 86 85 87 86 virtual ~PlatformCALayer(); … … 133 132 virtual void addAnimationForKey(const String& key, PlatformCAAnimation&) = 0; 134 133 virtual void removeAnimationForKey(const String& key) = 0; 135 virtual PassRefPtr<PlatformCAAnimation> animationForKey(const String& key) = 0;134 virtual RefPtr<PlatformCAAnimation> animationForKey(const String& key) = 0; 136 135 137 136 virtual void setMask(PlatformCALayer*) = 0; … … 261 260 #endif 262 261 263 virtual PassRefPtr<PlatformCALayer> createCompatibleLayer(LayerType, PlatformCALayerClient*) const = 0;264 PassRefPtr<PlatformCALayer> createCompatibleLayerOrTakeFromPool(LayerType layerType, PlatformCALayerClient* client, IntSize);262 virtual Ref<PlatformCALayer> createCompatibleLayer(LayerType, PlatformCALayerClient*) const = 0; 263 Ref<PlatformCALayer> createCompatibleLayerOrTakeFromPool(LayerType, PlatformCALayerClient*, IntSize); 265 264 266 265 #if PLATFORM(COCOA) -
trunk/Source/WebCore/platform/graphics/ca/TileCoverageMap.cpp
r215160 r216448 36 36 : m_controller(controller) 37 37 , m_updateTimer(*this, &TileCoverageMap::updateTimerFired) 38 , m_layer( *controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeSimpleLayer, this))39 , m_visibleViewportIndicatorLayer( *controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr))40 , m_layoutViewportIndicatorLayer( *controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr))41 , m_coverageRectIndicatorLayer( *controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr))38 , m_layer(controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeSimpleLayer, this)) 39 , m_visibleViewportIndicatorLayer(controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr)) 40 , m_layoutViewportIndicatorLayer(controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr)) 41 , m_coverageRectIndicatorLayer(controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr)) 42 42 , m_position(FloatPoint(0, controller.topContentInset())) 43 43 { -
trunk/Source/WebCore/platform/graphics/ca/TileGrid.cpp
r215167 r216448 66 66 TileGrid::TileGrid(TileController& controller) 67 67 : m_controller(controller) 68 , m_containerLayer( *controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr))68 , m_containerLayer(controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr)) 69 69 , m_cohortRemovalTimer(*this, &TileGrid::cohortRemovalTimerFired) 70 70 , m_tileSize(kDefaultTileSize, kDefaultTileSize) -
trunk/Source/WebCore/platform/graphics/ca/cocoa/PlatformCALayerCocoa.h
r213767 r216448 34 34 class PlatformCALayerCocoa final : public PlatformCALayer { 35 35 public: 36 static PassRefPtr<PlatformCALayer> create(LayerType, PlatformCALayerClient*);36 static Ref<PlatformCALayer> create(LayerType, PlatformCALayerClient*); 37 37 38 38 // This function passes the layer as a void* rather than a PlatformLayer because PlatformLayer 39 39 // is defined differently for Obj C and C++. This allows callers from both languages. 40 static PassRefPtr<PlatformCALayer> create(void* platformLayer, PlatformCALayerClient*);40 static Ref<PlatformCALayer> create(void* platformLayer, PlatformCALayerClient*); 41 41 42 42 WEBCORE_EXPORT static LayerType layerTypeForPlatformLayer(PlatformLayer*); … … 63 63 void addAnimationForKey(const String& key, PlatformCAAnimation&) override; 64 64 void removeAnimationForKey(const String& key) override; 65 PassRefPtr<PlatformCAAnimation> animationForKey(const String& key) override;65 RefPtr<PlatformCAAnimation> animationForKey(const String& key) override; 66 66 void animationStarted(const String& key, CFTimeInterval beginTime) override; 67 67 void animationEnded(const String& key) override; … … 170 170 TiledBacking* tiledBacking() override; 171 171 172 PassRefPtr<PlatformCALayer> clone(PlatformCALayerClient* owner) const override;173 174 PassRefPtr<PlatformCALayer> createCompatibleLayer(PlatformCALayer::LayerType, PlatformCALayerClient*) const override;172 Ref<PlatformCALayer> clone(PlatformCALayerClient* owner) const override; 173 174 Ref<PlatformCALayer> createCompatibleLayer(PlatformCALayer::LayerType, PlatformCALayerClient*) const override; 175 175 176 176 void enumerateRectsBeingDrawn(CGContextRef, void (^block)(CGRect)) override; -
trunk/Source/WebCore/platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm
r213940 r216448 70 70 using namespace WebCore; 71 71 72 PassRefPtr<PlatformCALayer> PlatformCALayerCocoa::create(LayerType layerType, PlatformCALayerClient* owner)73 { 74 return adoptRef( new PlatformCALayerCocoa(layerType, owner));75 } 76 77 PassRefPtr<PlatformCALayer> PlatformCALayerCocoa::create(void* platformLayer, PlatformCALayerClient* owner)78 { 79 return adoptRef( new PlatformCALayerCocoa(static_cast<PlatformLayer*>(platformLayer), owner));72 Ref<PlatformCALayer> PlatformCALayerCocoa::create(LayerType layerType, PlatformCALayerClient* owner) 73 { 74 return adoptRef(*new PlatformCALayerCocoa(layerType, owner)); 75 } 76 77 Ref<PlatformCALayer> PlatformCALayerCocoa::create(void* platformLayer, PlatformCALayerClient* owner) 78 { 79 return adoptRef(*new PlatformCALayerCocoa(static_cast<PlatformLayer*>(platformLayer), owner)); 80 80 } 81 81 … … 312 312 } 313 313 314 PassRefPtr<PlatformCALayer> PlatformCALayerCocoa::clone(PlatformCALayerClient* owner) const314 Ref<PlatformCALayer> PlatformCALayerCocoa::clone(PlatformCALayerClient* owner) const 315 315 { 316 316 LayerType type; … … 333 333 break; 334 334 }; 335 RefPtr<PlatformCALayer>newLayer = PlatformCALayerCocoa::create(type, owner);335 auto newLayer = PlatformCALayerCocoa::create(type, owner); 336 336 337 337 newLayer->setPosition(position()); … … 353 353 ASSERT([newLayer->platformLayer() isKindOfClass:getAVPlayerLayerClass()]); 354 354 355 AVPlayerLayer *destinationPlayerLayer = static_cast<PlatformCALayerCocoa *>(newLayer.get())->avPlayerLayer();355 AVPlayerLayer *destinationPlayerLayer = static_cast<PlatformCALayerCocoa&>(newLayer.get()).avPlayerLayer(); 356 356 AVPlayerLayer *sourcePlayerLayer = avPlayerLayer(); 357 357 ASSERT(sourcePlayerLayer); … … 509 509 } 510 510 511 PassRefPtr<PlatformCAAnimation> PlatformCALayerCocoa::animationForKey(const String& key)511 RefPtr<PlatformCAAnimation> PlatformCALayerCocoa::animationForKey(const String& key) 512 512 { 513 513 CAPropertyAnimation* propertyAnimation = static_cast<CAPropertyAnimation*>([m_layer animationForKey:key]); 514 514 if (!propertyAnimation) 515 return 0;515 return nullptr; 516 516 return PlatformCAAnimationCocoa::create(propertyAnimation); 517 517 } … … 1191 1191 } 1192 1192 1193 PassRefPtr<PlatformCALayer> PlatformCALayerCocoa::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const1193 Ref<PlatformCALayer> PlatformCALayerCocoa::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const 1194 1194 { 1195 1195 return PlatformCALayerCocoa::create(layerType, client); -
trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp
r213963 r216448 48 48 using namespace WebCore; 49 49 50 PassRefPtr<PlatformCALayer> PlatformCALayerWin::create(LayerType layerType, PlatformCALayerClient* owner)51 { 52 return adoptRef( new PlatformCALayerWin(layerType, nullptr, owner));53 } 54 55 PassRefPtr<PlatformCALayer> PlatformCALayerWin::create(PlatformLayer* platformLayer, PlatformCALayerClient* owner)56 { 57 return adoptRef( new PlatformCALayerWin(LayerTypeCustom, platformLayer, owner));50 Ref<PlatformCALayer> PlatformCALayerWin::create(LayerType layerType, PlatformCALayerClient* owner) 51 { 52 return adoptRef(*new PlatformCALayerWin(layerType, nullptr, owner)); 53 } 54 55 Ref<PlatformCALayer> PlatformCALayerWin::create(PlatformLayer* platformLayer, PlatformCALayerClient* owner) 56 { 57 return adoptRef(*new PlatformCALayerWin(LayerTypeCustom, platformLayer, owner)); 58 58 } 59 59 … … 182 182 } 183 183 184 PassRefPtr<PlatformCALayer> PlatformCALayerWin::clone(PlatformCALayerClient* owner) const184 Ref<PlatformCALayer> PlatformCALayerWin::clone(PlatformCALayerClient* owner) const 185 185 { 186 186 PlatformCALayer::LayerType type = (layerType() == PlatformCALayer::LayerTypeTransformLayer) ? 187 187 PlatformCALayer::LayerTypeTransformLayer : PlatformCALayer::LayerTypeLayer; 188 RefPtr<PlatformCALayer>newLayer = PlatformCALayerWin::create(type, owner);188 auto newLayer = PlatformCALayerWin::create(type, owner); 189 189 190 190 newLayer->setPosition(position()); … … 354 354 } 355 355 356 PassRefPtr<PlatformCAAnimation> PlatformCALayerWin::animationForKey(const String& key)356 RefPtr<PlatformCAAnimation> PlatformCALayerWin::animationForKey(const String& key) 357 357 { 358 358 HashMap<String, RefPtr<PlatformCAAnimation> >::iterator it = m_animations.find(key); … … 940 940 } 941 941 942 PassRefPtr<PlatformCALayer> PlatformCALayerWin::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const942 Ref<PlatformCALayer> PlatformCALayerWin::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const 943 943 { 944 944 return PlatformCALayerWin::create(layerType, client); -
trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h
r213191 r216448 33 33 class PlatformCALayerWin final : public PlatformCALayer { 34 34 public: 35 static PassRefPtr<PlatformCALayer> create(LayerType, PlatformCALayerClient*);36 static PassRefPtr<PlatformCALayer> create(PlatformLayer*, PlatformCALayerClient*);35 static Ref<PlatformCALayer> create(LayerType, PlatformCALayerClient*); 36 static Ref<PlatformCALayer> create(PlatformLayer*, PlatformCALayerClient*); 37 37 38 38 ~PlatformCALayerWin(); … … 55 55 void addAnimationForKey(const String& key, PlatformCAAnimation&) override; 56 56 void removeAnimationForKey(const String& key) override; 57 PassRefPtr<PlatformCAAnimation> animationForKey(const String& key) override;57 RefPtr<PlatformCAAnimation> animationForKey(const String& key) override; 58 58 void animationStarted(const String& key, CFTimeInterval beginTime) override; 59 59 void animationEnded(const String& key) override; … … 166 166 String layerTreeAsString() const override; 167 167 168 PassRefPtr<PlatformCALayer> clone(PlatformCALayerClient* owner) const override;168 Ref<PlatformCALayer> clone(PlatformCALayerClient* owner) const override; 169 169 170 PassRefPtr<PlatformCALayer> createCompatibleLayer(PlatformCALayer::LayerType, PlatformCALayerClient*) const override;170 Ref<PlatformCALayer> createCompatibleLayer(PlatformCALayer::LayerType, PlatformCALayerClient*) const override; 171 171 172 172 private: -
trunk/Source/WebKit2/ChangeLog
r216446 r216448 1 2017-05-08 Alex Christensen <achristensen@webkit.org> 2 3 Reduce PassRefPtr use 4 https://bugs.webkit.org/show_bug.cgi?id=171809 5 6 Reviewed by Chris Dumez. 7 8 * PluginProcess/PluginControllerProxy.cpp: 9 (WebKit::PluginControllerProxy::setInitializationReply): 10 * PluginProcess/PluginControllerProxy.h: 11 * PluginProcess/WebProcessConnection.cpp: 12 (WebKit::WebProcessConnection::destroyPlugin): 13 (WebKit::WebProcessConnection::createPlugin): 14 * PluginProcess/WebProcessConnection.h: 15 * WebProcess/WebCoreSupport/WebChromeClient.cpp: 16 (WebKit::WebChromeClient::runOpenPanel): 17 * WebProcess/WebCoreSupport/WebEditorClient.cpp: 18 (WebKit::WebEditorClient::registerUndoStep): 19 * WebProcess/WebPage/VisitedLinkTableController.cpp: 20 (WebKit::VisitedLinkTableController::getOrCreate): 21 * WebProcess/WebPage/VisitedLinkTableController.h: 22 * WebProcess/WebPage/WebFrame.cpp: 23 (WebKit::WebFrame::hitTest): 24 (WebKit::WebFrame::createSelectionSnapshot): 25 * WebProcess/WebPage/WebFrame.h: 26 * WebProcess/WebPage/WebOpenPanelResultListener.cpp: 27 (WebKit::WebOpenPanelResultListener::create): 28 (WebKit::WebOpenPanelResultListener::WebOpenPanelResultListener): 29 * WebProcess/WebPage/WebOpenPanelResultListener.h: 30 * WebProcess/WebPage/WebPage.cpp: 31 (WebKit::WebPage::unapplyEditCommand): 32 (WebKit::WebPage::reapplyEditCommand): 33 * WebProcess/WebPage/WebPageGroupProxy.cpp: 34 (WebKit::WebPageGroupProxy::create): 35 * WebProcess/WebPage/WebPageGroupProxy.h: 36 * WebProcess/WebPage/WebUndoStep.cpp: 37 (WebKit::WebUndoStep::create): 38 * WebProcess/WebPage/WebUndoStep.h: 39 (WebKit::WebUndoStep::step): 40 (WebKit::WebUndoStep::WebUndoStep): 41 * WebProcess/WebPage/mac/PlatformCALayerRemote.cpp: 42 (WebKit::PlatformCALayerRemote::create): 43 (WebKit::PlatformCALayerRemote::clone): 44 (WebKit::PlatformCALayerRemote::animationForKey): 45 (WebKit::PlatformCALayerRemote::createCompatibleLayer): 46 * WebProcess/WebPage/mac/PlatformCALayerRemote.h: 47 * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.h: 48 * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.mm: 49 (WebKit::PlatformCALayerRemoteCustom::create): 50 (WebKit::PlatformCALayerRemoteCustom::clone): 51 1 52 2017-05-08 Jer Noble <jer.noble@apple.com> 2 53 -
trunk/Source/WebKit2/PluginProcess/PluginControllerProxy.cpp
r215160 r216448 92 92 } 93 93 94 void PluginControllerProxy::setInitializationReply( PassRefPtr<Messages::WebProcessConnection::CreatePlugin::DelayedReply>reply)94 void PluginControllerProxy::setInitializationReply(Ref<Messages::WebProcessConnection::CreatePlugin::DelayedReply>&& reply) 95 95 { 96 96 ASSERT(!m_initializationReply); 97 m_initializationReply = reply;97 m_initializationReply = WTFMove(reply); 98 98 } 99 99 -
trunk/Source/WebKit2/PluginProcess/PluginControllerProxy.h
r204668 r216448 76 76 bool isInitializing() const { return m_isInitializing; } 77 77 78 void setInitializationReply( PassRefPtr<Messages::WebProcessConnection::CreatePlugin::DelayedReply>);78 void setInitializationReply(Ref<Messages::WebProcessConnection::CreatePlugin::DelayedReply>&&); 79 79 RefPtr<Messages::WebProcessConnection::CreatePlugin::DelayedReply> takeInitializationReply(); 80 80 -
trunk/Source/WebKit2/PluginProcess/WebProcessConnection.cpp
r208841 r216448 177 177 } 178 178 179 void WebProcessConnection::destroyPlugin(uint64_t pluginInstanceID, bool asynchronousCreationIncomplete, PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>reply)179 void WebProcessConnection::destroyPlugin(uint64_t pluginInstanceID, bool asynchronousCreationIncomplete, Ref<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>&& reply) 180 180 { 181 181 // We return immediately from this synchronous IPC. We want to make sure the plugin destruction is just about to start so audio playback … … 230 230 } 231 231 232 void WebProcessConnection::createPlugin(const PluginCreationParameters& creationParameters, PassRefPtr<Messages::WebProcessConnection::CreatePlugin::DelayedReply>reply)232 void WebProcessConnection::createPlugin(const PluginCreationParameters& creationParameters, Ref<Messages::WebProcessConnection::CreatePlugin::DelayedReply>&& reply) 233 233 { 234 234 // Ensure we don't clamp any timers during initialization … … 241 241 // It might still be in the middle of initialization in which case we have to let that initialization complete and respond to this message later. 242 242 if (pluginControllerProxy->isInitializing()) { 243 pluginControllerProxy->setInitializationReply( reply);243 pluginControllerProxy->setInitializationReply(WTFMove(reply)); 244 244 return; 245 245 } -
trunk/Source/WebKit2/PluginProcess/WebProcessConnection.h
r208329 r216448 24 24 */ 25 25 26 #ifndef WebProcessConnection_h 27 #define WebProcessConnection_h 26 #pragma once 28 27 29 28 #if ENABLE(NETSCAPE_PLUGIN_API) … … 71 70 void didReceiveWebProcessConnectionMessage(IPC::Connection&, IPC::Decoder&); 72 71 void didReceiveSyncWebProcessConnectionMessage(IPC::Connection&, IPC::Decoder&, std::unique_ptr<IPC::Encoder>&); 73 void createPlugin(const PluginCreationParameters&, PassRefPtr<Messages::WebProcessConnection::CreatePlugin::DelayedReply>);72 void createPlugin(const PluginCreationParameters&, Ref<Messages::WebProcessConnection::CreatePlugin::DelayedReply>&&); 74 73 void createPluginAsynchronously(const PluginCreationParameters&); 75 void destroyPlugin(uint64_t pluginInstanceID, bool asynchronousCreationIncomplete, PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>);74 void destroyPlugin(uint64_t pluginInstanceID, bool asynchronousCreationIncomplete, Ref<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>&&); 76 75 77 76 void createPluginInternal(const PluginCreationParameters&, bool& result, bool& wantsWheelEvents, uint32_t& remoteLayerClientID); … … 87 86 88 87 #endif // ENABLE(NETSCAPE_PLUGIN_API) 89 90 91 #endif // WebProcessConnection_h -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp
r216047 r216448 774 774 return; 775 775 776 m_page.setActiveOpenPanelResultListener(WebOpenPanelResultListener::create( &m_page, &fileChooser));776 m_page.setActiveOpenPanelResultListener(WebOpenPanelResultListener::create(m_page, fileChooser)); 777 777 778 778 auto* webFrame = WebFrame::fromCoreFrame(frame); -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp
r216426 r216448 246 246 return; 247 247 248 auto webStep = WebUndoStep::create( &step);249 auto editAction = static_cast<uint32_t>(webStep->step() ->editingAction());248 auto webStep = WebUndoStep::create(step); 249 auto editAction = static_cast<uint32_t>(webStep->step().editingAction()); 250 250 251 251 m_page->addWebUndoStep(webStep->stepID(), webStep.ptr()); -
trunk/Source/WebKit2/WebProcess/WebPage/VisitedLinkTableController.cpp
r207620 r216448 45 45 } 46 46 47 PassRefPtr<VisitedLinkTableController> VisitedLinkTableController::getOrCreate(uint64_t identifier)47 Ref<VisitedLinkTableController> VisitedLinkTableController::getOrCreate(uint64_t identifier) 48 48 { 49 49 auto& visitedLinkTableControllerPtr = visitedLinkTableControllers().add(identifier, nullptr).iterator->value; 50 50 if (visitedLinkTableControllerPtr) 51 return visitedLinkTableControllerPtr;51 return *visitedLinkTableControllerPtr; 52 52 53 53 auto visitedLinkTableController = adoptRef(*new VisitedLinkTableController(identifier)); 54 54 visitedLinkTableControllerPtr = visitedLinkTableController.ptr(); 55 55 56 return WTFMove(visitedLinkTableController);56 return visitedLinkTableController; 57 57 } 58 58 -
trunk/Source/WebKit2/WebProcess/WebPage/VisitedLinkTableController.h
r204668 r216448 24 24 */ 25 25 26 #ifndef VisitedLinkTableController_h 27 #define VisitedLinkTableController_h 26 #pragma once 28 27 29 28 #include "MessageReceiver.h" … … 36 35 class VisitedLinkTableController final : public WebCore::VisitedLinkStore , private IPC::MessageReceiver { 37 36 public: 38 static PassRefPtr<VisitedLinkTableController> getOrCreate(uint64_t identifier);37 static Ref<VisitedLinkTableController> getOrCreate(uint64_t identifier); 39 38 virtual ~VisitedLinkTableController(); 40 39 … … 59 58 60 59 } // namespace WebKit 61 62 #endif // VisitedLinkTableController_h -
trunk/Source/WebKit2/WebProcess/WebPage/WebFrame.cpp
r216338 r216448 604 604 } 605 605 606 PassRefPtr<InjectedBundleHitTestResult> WebFrame::hitTest(const IntPoint point) const607 { 608 if (!m_coreFrame) 609 return 0;606 RefPtr<InjectedBundleHitTestResult> WebFrame::hitTest(const IntPoint point) const 607 { 608 if (!m_coreFrame) 609 return nullptr; 610 610 611 611 return InjectedBundleHitTestResult::create(m_coreFrame->eventHandler().hitTestResultAtPoint(point, HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::DisallowUserAgentShadowContent)); … … 819 819 #endif 820 820 821 PassRefPtr<ShareableBitmap> WebFrame::createSelectionSnapshot() const821 RefPtr<ShareableBitmap> WebFrame::createSelectionSnapshot() const 822 822 { 823 823 std::unique_ptr<ImageBuffer> snapshot = snapshotSelection(*coreFrame(), WebCore::SnapshotOptionsForceBlackText); … … 836 836 graphicsContext->drawConsumingImageBuffer(WTFMove(snapshot), FloatPoint()); 837 837 838 return WTFMove(sharedSnapshot);838 return sharedSnapshot; 839 839 } 840 840 -
trunk/Source/WebKit2/WebProcess/WebPage/WebFrame.h
r212312 r216448 24 24 */ 25 25 26 #ifndef WebFrame_h 27 #define WebFrame_h 26 #pragma once 28 27 29 28 #include "APIObject.h" … … 37 36 #include <WebCore/PolicyChecker.h> 38 37 #include <wtf/Forward.h> 39 #include <wtf/PassRefPtr.h>40 38 #include <wtf/RefPtr.h> 41 39 #include <wtf/RetainPtr.h> … … 112 110 bool hasHorizontalScrollbar() const; 113 111 bool hasVerticalScrollbar() const; 114 PassRefPtr<InjectedBundleHitTestResult> hitTest(const WebCore::IntPoint) const;112 RefPtr<InjectedBundleHitTestResult> hitTest(const WebCore::IntPoint) const; 115 113 bool getDocumentBackgroundColor(double* red, double* green, double* blue, double* alpha); 116 114 bool containsAnyFormElements() const; … … 159 157 #endif 160 158 161 PassRefPtr<ShareableBitmap> createSelectionSnapshot() const;159 RefPtr<ShareableBitmap> createSelectionSnapshot() const; 162 160 163 161 #if PLATFORM(IOS) … … 187 185 188 186 } // namespace WebKit 189 190 #endif // WebFrame_h -
trunk/Source/WebKit2/WebProcess/WebPage/WebOpenPanelResultListener.cpp
r186566 r216448 27 27 #include "WebOpenPanelResultListener.h" 28 28 29 #include <WebCore/FileChooser.h> 29 30 #include <WebCore/Icon.h> 30 31 31 32 namespace WebKit { 32 33 33 Ref<WebOpenPanelResultListener> WebOpenPanelResultListener::create(WebPage * page, PassRefPtr<WebCore::FileChooser>fileChooser)34 Ref<WebOpenPanelResultListener> WebOpenPanelResultListener::create(WebPage& page, Ref<WebCore::FileChooser>&& fileChooser) 34 35 { 35 return adoptRef(*new WebOpenPanelResultListener(page, fileChooser));36 return adoptRef(*new WebOpenPanelResultListener(page, WTFMove(fileChooser))); 36 37 } 37 38 38 WebOpenPanelResultListener::WebOpenPanelResultListener(WebPage * page, PassRefPtr<WebCore::FileChooser>fileChooser)39 : m_page( page)40 , m_fileChooser( fileChooser)39 WebOpenPanelResultListener::WebOpenPanelResultListener(WebPage& page, Ref<WebCore::FileChooser>&& fileChooser) 40 : m_page(&page) 41 , m_fileChooser(WTFMove(fileChooser)) 41 42 { 42 43 } -
trunk/Source/WebKit2/WebProcess/WebPage/WebOpenPanelResultListener.h
r186566 r216448 24 24 */ 25 25 26 #ifndef WebOpenPanelResultListener_h 27 #define WebOpenPanelResultListener_h 26 #pragma once 28 27 28 #include <wtf/Forward.h> 29 #include <wtf/Ref.h> 29 30 #include <wtf/RefCounted.h> 30 #include < WebCore/FileChooser.h>31 #include <wtf/Vector.h> 31 32 32 33 namespace WebCore { 34 class FileChooser; 33 35 class Icon; 34 36 } … … 40 42 class WebOpenPanelResultListener : public RefCounted<WebOpenPanelResultListener> { 41 43 public: 42 static Ref<WebOpenPanelResultListener> create(WebPage *, PassRefPtr<WebCore::FileChooser>);44 static Ref<WebOpenPanelResultListener> create(WebPage&, Ref<WebCore::FileChooser>&&); 43 45 ~WebOpenPanelResultListener(); 44 46 … … 50 52 51 53 private: 52 WebOpenPanelResultListener(WebPage *, PassRefPtr<WebCore::FileChooser>);54 WebOpenPanelResultListener(WebPage&, Ref<WebCore::FileChooser>&&); 53 55 54 56 WebPage* m_page; 55 Ref Ptr<WebCore::FileChooser> m_fileChooser;57 Ref<WebCore::FileChooser> m_fileChooser; 56 58 }; 57 59 58 60 } // namespace WebKit 59 60 61 #endif // WebOpenPanelResultListener_h -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r216348 r216448 3711 3711 return; 3712 3712 3713 step->step() ->unapply();3713 step->step().unapply(); 3714 3714 } 3715 3715 … … 3721 3721 3722 3722 m_isInRedo = true; 3723 step->step() ->reapply();3723 step->step().reapply(); 3724 3724 m_isInRedo = false; 3725 3725 } -
trunk/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.cpp
r202242 r216448 36 36 namespace WebKit { 37 37 38 PassRefPtr<WebPageGroupProxy> WebPageGroupProxy::create(const WebPageGroupData& data)38 Ref<WebPageGroupProxy> WebPageGroupProxy::create(const WebPageGroupData& data) 39 39 { 40 40 auto pageGroup = adoptRef(*new WebPageGroupProxy(data)); … … 43 43 WebProcess::singleton().injectedBundle()->didInitializePageGroup(pageGroup.ptr()); 44 44 45 return WTFMove(pageGroup);45 return pageGroup; 46 46 } 47 47 -
trunk/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
r198180 r216448 24 24 */ 25 25 26 #ifndef WebPageGroupProxy_h 27 #define WebPageGroupProxy_h 26 #pragma once 28 27 29 28 #include "APIObject.h" 30 29 #include "WebPageGroupData.h" 31 #include <wtf/ PassRefPtr.h>30 #include <wtf/Ref.h> 32 31 33 32 namespace WebCore { … … 41 40 class WebPageGroupProxy : public API::ObjectImpl<API::Object::Type::BundlePageGroup> { 42 41 public: 43 static PassRefPtr<WebPageGroupProxy> create(const WebPageGroupData&);42 static Ref<WebPageGroupProxy> create(const WebPageGroupData&); 44 43 virtual ~WebPageGroupProxy(); 45 44 … … 61 60 62 61 } // namespace WebKit 63 64 #endif // WebPageGroupProxy_h -
trunk/Source/WebKit2/WebProcess/WebPage/WebUndoStep.cpp
r208342 r216448 35 35 } 36 36 37 Ref<WebUndoStep> WebUndoStep::create( PassRefPtr<WebCore::UndoStep>step)37 Ref<WebUndoStep> WebUndoStep::create(Ref<WebCore::UndoStep>&& step) 38 38 { 39 return adoptRef(*new WebUndoStep( step, generateUndoStep()));39 return adoptRef(*new WebUndoStep(WTFMove(step), generateUndoStep())); 40 40 } 41 41 -
trunk/Source/WebKit2/WebProcess/WebPage/WebUndoStep.h
r208342 r216448 24 24 */ 25 25 26 #ifndef WebUndoStep_h 27 #define WebUndoStep_h 26 #pragma once 28 27 29 28 #include <WebCore/UndoStep.h> 30 #include <wtf/PassRefPtr.h> 31 #include <wtf/RefPtr.h> 29 #include <wtf/Ref.h> 32 30 33 31 namespace WebKit { … … 35 33 class WebUndoStep : public RefCounted<WebUndoStep> { 36 34 public: 37 static Ref<WebUndoStep> create( PassRefPtr<WebCore::UndoStep>);35 static Ref<WebUndoStep> create(Ref<WebCore::UndoStep>&&); 38 36 ~WebUndoStep(); 39 37 40 WebCore::UndoStep *step() const { return m_step.get(); }38 WebCore::UndoStep& step() const { return m_step.get(); } 41 39 uint64_t stepID() const { return m_stepID; } 42 40 43 41 private: 44 WebUndoStep( PassRefPtr<WebCore::UndoStep>step, uint64_t stepID)45 : m_step( step)42 WebUndoStep(Ref<WebCore::UndoStep>&& step, uint64_t stepID) 43 : m_step(WTFMove(step)) 46 44 , m_stepID(stepID) 47 45 { 48 46 } 49 47 50 Ref Ptr<WebCore::UndoStep> m_step;48 Ref<WebCore::UndoStep> m_step; 51 49 uint64_t m_stepID; 52 50 }; 53 51 54 52 } // namespace WebKit 55 56 #endif // WebEditCommand_h -
trunk/Source/WebKit2/WebProcess/WebPage/mac/GraphicsLayerCARemote.cpp
r212590 r216448 50 50 result->setWantsDeepColorBackingStore(screenSupportsExtendedColor()); 51 51 52 return result;52 return WTFMove(result); 53 53 } 54 54 -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemote.cpp
r216104 r216448 45 45 namespace WebKit { 46 46 47 PassRefPtr<PlatformCALayerRemote> PlatformCALayerRemote::create(LayerType layerType, PlatformCALayerClient* owner, RemoteLayerTreeContext& context)47 Ref<PlatformCALayerRemote> PlatformCALayerRemote::create(LayerType layerType, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) 48 48 { 49 49 RefPtr<PlatformCALayerRemote> layer; … … 56 56 context.layerWasCreated(*layer, layerType); 57 57 58 return WTFMove(layer);59 } 60 61 PassRefPtr<PlatformCALayerRemote> PlatformCALayerRemote::create(PlatformLayer *platformLayer, PlatformCALayerClient* owner, RemoteLayerTreeContext& context)58 return layer.releaseNonNull(); 59 } 60 61 Ref<PlatformCALayerRemote> PlatformCALayerRemote::create(PlatformLayer *platformLayer, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) 62 62 { 63 63 return PlatformCALayerRemoteCustom::create(platformLayer, owner, context); 64 64 } 65 65 66 PassRefPtr<PlatformCALayerRemote> PlatformCALayerRemote::create(const PlatformCALayerRemote& other, WebCore::PlatformCALayerClient* owner, RemoteLayerTreeContext& context)66 Ref<PlatformCALayerRemote> PlatformCALayerRemote::create(const PlatformCALayerRemote& other, WebCore::PlatformCALayerClient* owner, RemoteLayerTreeContext& context) 67 67 { 68 68 auto layer = adoptRef(*new PlatformCALayerRemote(other, owner, context)); … … 70 70 context.layerWasCreated(layer.get(), other.layerType()); 71 71 72 return WTFMove(layer);72 return layer; 73 73 } 74 74 … … 90 90 } 91 91 92 PassRefPtr<PlatformCALayer> PlatformCALayerRemote::clone(PlatformCALayerClient* owner) const92 Ref<PlatformCALayer> PlatformCALayerRemote::clone(PlatformCALayerClient* owner) const 93 93 { 94 94 auto clone = PlatformCALayerRemote::create(*this, owner, *m_context); 95 95 96 updateClonedLayerProperties( *clone);96 updateClonedLayerProperties(clone); 97 97 98 98 clone->setClonedLayer(this); … … 358 358 } 359 359 360 PassRefPtr<PlatformCAAnimation> PlatformCALayerRemote::animationForKey(const String& key)360 RefPtr<PlatformCAAnimation> PlatformCALayerRemote::animationForKey(const String& key) 361 361 { 362 362 return m_animations.get(key); … … 822 822 } 823 823 824 PassRefPtr<PlatformCALayer> PlatformCALayerRemote::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const824 Ref<PlatformCALayer> PlatformCALayerRemote::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const 825 825 { 826 826 return PlatformCALayerRemote::create(layerType, client, *m_context); -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemote.h
r212776 r216448 40 40 class PlatformCALayerRemote : public WebCore::PlatformCALayer { 41 41 public: 42 static PassRefPtr<PlatformCALayerRemote> create(WebCore::PlatformCALayer::LayerType, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&);43 static PassRefPtr<PlatformCALayerRemote> create(PlatformLayer *, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&);44 static PassRefPtr<PlatformCALayerRemote> create(const PlatformCALayerRemote&, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&);42 static Ref<PlatformCALayerRemote> create(WebCore::PlatformCALayer::LayerType, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&); 43 static Ref<PlatformCALayerRemote> create(PlatformLayer *, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&); 44 static Ref<PlatformCALayerRemote> create(const PlatformCALayerRemote&, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&); 45 45 46 46 virtual ~PlatformCALayerRemote(); … … 67 67 void addAnimationForKey(const String& key, WebCore::PlatformCAAnimation&) override; 68 68 void removeAnimationForKey(const String& key) override; 69 PassRefPtr<WebCore::PlatformCAAnimation> animationForKey(const String& key) override;69 RefPtr<WebCore::PlatformCAAnimation> animationForKey(const String& key) override; 70 70 void animationStarted(const String& key, CFTimeInterval beginTime) override; 71 71 void animationEnded(const String& key) override; … … 176 176 WebCore::TiledBacking* tiledBacking() override { return nullptr; } 177 177 178 PassRefPtr<WebCore::PlatformCALayer> clone(WebCore::PlatformCALayerClient* owner) const override;179 180 PassRefPtr<PlatformCALayer> createCompatibleLayer(WebCore::PlatformCALayer::LayerType, WebCore::PlatformCALayerClient*) const override;178 Ref<WebCore::PlatformCALayer> clone(WebCore::PlatformCALayerClient* owner) const override; 179 180 Ref<PlatformCALayer> createCompatibleLayer(WebCore::PlatformCALayer::LayerType, WebCore::PlatformCALayerClient*) const override; 181 181 182 182 void enumerateRectsBeingDrawn(CGContextRef, void (^block)(CGRect)) override; -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.h
r197563 r216448 24 24 */ 25 25 26 #ifndef PlatformCALayerRemoteCustom_h 27 #define PlatformCALayerRemoteCustom_h 26 #pragma once 28 27 29 28 #include "PlatformCALayerRemote.h" … … 37 36 friend class PlatformCALayerRemote; 38 37 public: 39 static PassRefPtr<PlatformCALayerRemote> create(PlatformLayer *, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&);38 static Ref<PlatformCALayerRemote> create(PlatformLayer *, WebCore::PlatformCALayerClient*, RemoteLayerTreeContext&); 40 39 41 40 virtual ~PlatformCALayerRemoteCustom(); … … 51 50 PlatformCALayerRemoteCustom(WebCore::PlatformCALayer::LayerType, PlatformLayer *, WebCore::PlatformCALayerClient* owner, RemoteLayerTreeContext&); 52 51 53 PassRefPtr<WebCore::PlatformCALayer> clone(WebCore::PlatformCALayerClient* owner) const override;52 Ref<WebCore::PlatformCALayer> clone(WebCore::PlatformCALayerClient* owner) const override; 54 53 55 54 bool isPlatformCALayerRemoteCustom() const override { return true; } … … 66 65 67 66 SPECIALIZE_TYPE_TRAITS_PLATFORM_CALAYER(WebKit::PlatformCALayerRemoteCustom, isPlatformCALayerRemote()) 68 69 #endif // PlatformCALayerRemoteCustom_h -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.mm
r213940 r216448 47 47 static NSString * const platformCALayerPointer = @"WKPlatformCALayer"; 48 48 49 PassRefPtr<PlatformCALayerRemote> PlatformCALayerRemoteCustom::create(PlatformLayer *platformLayer, PlatformCALayerClient* owner, RemoteLayerTreeContext& context)49 Ref<PlatformCALayerRemote> PlatformCALayerRemoteCustom::create(PlatformLayer *platformLayer, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) 50 50 { 51 51 auto layer = adoptRef(*new PlatformCALayerRemoteCustom(PlatformCALayerCocoa::layerTypeForPlatformLayer(platformLayer), platformLayer, owner, context)); 52 52 context.layerWasCreated(layer.get(), layer->layerType()); 53 54 53 return WTFMove(layer); 55 54 } … … 101 100 } 102 101 103 PassRefPtr<WebCore::PlatformCALayer> PlatformCALayerRemoteCustom::clone(PlatformCALayerClient* owner) const102 Ref<WebCore::PlatformCALayer> PlatformCALayerRemoteCustom::clone(PlatformCALayerClient* owner) const 104 103 { 105 104 RetainPtr<CALayer *> clonedLayer;
Note:
See TracChangeset
for help on using the changeset viewer.