diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 22:27:47 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 22:27:47 +0000 |
commit | d58499a6e4207df8a2727c62e92411b850c9895e (patch) | |
tree | b5d62b6d36588c0ac898bb77b3169457730aef8a /cc/ContentLayerChromium.h | |
parent | 16c20265d787247df7b2622f33433511654003c7 (diff) | |
download | chromium_src-d58499a6e4207df8a2727c62e92411b850c9895e.zip chromium_src-d58499a6e4207df8a2727c62e92411b850c9895e.tar.gz chromium_src-d58499a6e4207df8a2727c62e92411b850c9895e.tar.bz2 |
[cc] Remove WTF types from LayerChromium and layer lists
Relanding https://chromiumcodereview.appspot.com/11047029.
No changes from original patch. This was reverted as an innocent bystander of
r160623's breakage.
BUG=154451
Review URL: https://chromiumcodereview.appspot.com/11066083
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160953 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/ContentLayerChromium.h')
-rw-r--r-- | cc/ContentLayerChromium.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cc/ContentLayerChromium.h b/cc/ContentLayerChromium.h index 1112134..b8ac462 100644 --- a/cc/ContentLayerChromium.h +++ b/cc/ContentLayerChromium.h @@ -38,9 +38,7 @@ private: // A layer that renders its contents into an SkCanvas. class ContentLayerChromium : public TiledLayerChromium { public: - static PassRefPtr<ContentLayerChromium> create(ContentLayerChromiumClient*); - - virtual ~ContentLayerChromium(); + static scoped_refptr<ContentLayerChromium> create(ContentLayerChromiumClient*); void clearClient() { m_client = 0; } @@ -53,7 +51,7 @@ public: protected: explicit ContentLayerChromium(ContentLayerChromiumClient*); - + virtual ~ContentLayerChromium(); private: virtual LayerTextureUpdater* textureUpdater() const OVERRIDE; |