Chromium Code Reviews| Index: cc/CCLayerTreeHost.h |
| diff --git a/cc/CCLayerTreeHost.h b/cc/CCLayerTreeHost.h |
| index 4c3c585466af640f59127d52297ead659170516f..04a31b95ae32a3f59fbb1bd2863e7804828a8af0 100644 |
| --- a/cc/CCLayerTreeHost.h |
| +++ b/cc/CCLayerTreeHost.h |
| @@ -5,6 +5,8 @@ |
| #ifndef CCLayerTreeHost_h |
| #define CCLayerTreeHost_h |
| +#include "base/basictypes.h" |
| +#include "cc/own_ptr_vector.h" |
|
jamesr
2012/09/28 20:37:06
hmm, chromium does a case-insensitive sort? I norm
tfarina
2012/09/28 20:48:04
for me vim sort puts own_ptr_vector.h at line 14,
|
| #include "CCAnimationEvents.h" |
| #include "CCGraphicsContext.h" |
| #include "CCLayerTreeHostClient.h" |
| @@ -16,7 +18,6 @@ |
| #include "IntRect.h" |
| #include "RateLimiter.h" |
| #include "SkColor.h" |
| -#include "cc/own_ptr_vector.h" |
| #include <limits> |
| #include <wtf/HashMap.h> |
| #include <wtf/OwnPtr.h> |
| @@ -77,7 +78,6 @@ struct RendererCapabilities { |
| }; |
| class CCLayerTreeHost : public RateLimiterClient { |
| - WTF_MAKE_NONCOPYABLE(CCLayerTreeHost); |
| public: |
| static PassOwnPtr<CCLayerTreeHost> create(CCLayerTreeHostClient*, const CCLayerTreeSettings&); |
| virtual ~CCLayerTreeHost(); |
| @@ -276,6 +276,8 @@ private: |
| size_t m_partialTextureUpdateRequests; |
| static bool s_needsFilterContext; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(CCLayerTreeHost); |
| }; |
| } |