summaryrefslogtreecommitdiffstats
path: root/cc/CCDebugRectHistory.h
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-09 22:27:47 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-09 22:27:47 +0000
commitd58499a6e4207df8a2727c62e92411b850c9895e (patch)
treeb5d62b6d36588c0ac898bb77b3169457730aef8a /cc/CCDebugRectHistory.h
parent16c20265d787247df7b2622f33433511654003c7 (diff)
downloadchromium_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/CCDebugRectHistory.h')
-rw-r--r--cc/CCDebugRectHistory.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/cc/CCDebugRectHistory.h b/cc/CCDebugRectHistory.h
index 2668001..1b03f34 100644
--- a/cc/CCDebugRectHistory.h
+++ b/cc/CCDebugRectHistory.h
@@ -12,6 +12,7 @@
#include "IntRect.h"
#include <wtf/PassOwnPtr.h>
#include <wtf/Vector.h>
+#include <vector>
namespace cc {
@@ -61,7 +62,7 @@ public:
~CCDebugRectHistory();
// Note: Saving debug rects must happen before layers' change tracking is reset.
- void saveDebugRectsForCurrentFrame(CCLayerImpl* rootLayer, const Vector<CCLayerImpl*>& renderSurfaceLayerList, const Vector<IntRect>& occludingScreenSpaceRects, const CCLayerTreeSettings&);
+ void saveDebugRectsForCurrentFrame(CCLayerImpl* rootLayer, const std::vector<CCLayerImpl*>& renderSurfaceLayerList, const Vector<IntRect>& occludingScreenSpaceRects, const CCLayerTreeSettings&);
const Vector<CCDebugRect>& debugRects() { return m_debugRects; }
@@ -69,9 +70,9 @@ private:
CCDebugRectHistory();
void savePaintRects(CCLayerImpl*);
- void savePropertyChangedRects(const Vector<CCLayerImpl*>& renderSurfaceLayerList);
- void saveSurfaceDamageRects(const Vector<CCLayerImpl* >& renderSurfaceLayerList);
- void saveScreenSpaceRects(const Vector<CCLayerImpl* >& renderSurfaceLayerList);
+ void savePropertyChangedRects(const std::vector<CCLayerImpl*>& renderSurfaceLayerList);
+ void saveSurfaceDamageRects(const std::vector<CCLayerImpl* >& renderSurfaceLayerList);
+ void saveScreenSpaceRects(const std::vector<CCLayerImpl* >& renderSurfaceLayerList);
void saveOccludingRects(const Vector<IntRect>& occludingScreenSpaceRects);
Vector<CCDebugRect> m_debugRects;