Refactor uses of WKSI to setup a remote layer into a new RemoteLayerClient class
Created attachment 128938 [details] Patch
Comment on attachment 128938 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=128938&action=review > Source/WebKit2/Platform/mac/RemoteLayerClient.h:45 > +class RemoteLayerClient : public RefCounted<RemoteLayerClient> { I don't think this needs to be refcounted. Just make it noncopyable and use OwnPtr instead of RefPtr.
Committed r108946: <http://trac.webkit.org/changeset/108946>