| OLD | NEW | 
|---|
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef CC_QUADS_RENDER_PASS_H_ | 5 #ifndef CC_QUADS_RENDER_PASS_H_ | 
| 6 #define CC_QUADS_RENDER_PASS_H_ | 6 #define CC_QUADS_RENDER_PASS_H_ | 
| 7 | 7 | 
| 8 #include <utility> | 8 #include <utility> | 
| 9 | 9 | 
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" | 
| 11 #include "base/callback.h" | 11 #include "base/callback.h" | 
| 12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" | 
| 13 #include "cc/base/cc_export.h" | 13 #include "cc/base/cc_export.h" | 
| 14 #include "cc/base/hash_pair.h" | 14 #include "cc/base/hash_pair.h" | 
| 15 #include "cc/base/scoped_ptr_hash_map.h" | 15 #include "cc/base/scoped_ptr_hash_map.h" | 
| 16 #include "cc/base/scoped_ptr_vector.h" | 16 #include "cc/base/scoped_ptr_vector.h" | 
| 17 #include "skia/ext/refptr.h" | 17 #include "skia/ext/refptr.h" | 
| 18 #include "third_party/WebKit/public/platform/WebFilterOperations.h" |  | 
| 19 #include "third_party/skia/include/core/SkColor.h" | 18 #include "third_party/skia/include/core/SkColor.h" | 
| 20 #include "third_party/skia/include/core/SkImageFilter.h" | 19 #include "third_party/skia/include/core/SkImageFilter.h" | 
| 21 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/rect.h" | 
| 22 #include "ui/gfx/rect_f.h" | 21 #include "ui/gfx/rect_f.h" | 
| 23 #include "ui/gfx/transform.h" | 22 #include "ui/gfx/transform.h" | 
| 24 | 23 | 
| 25 namespace cc { | 24 namespace cc { | 
| 26 | 25 | 
| 27 class DrawQuad; | 26 class DrawQuad; | 
| 28 class CopyOutputRequest; | 27 class CopyOutputRequest; | 
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 135 #error define a hash function for your compiler | 134 #error define a hash function for your compiler | 
| 136 #endif  // COMPILER | 135 #endif  // COMPILER | 
| 137 } | 136 } | 
| 138 | 137 | 
| 139 namespace cc { | 138 namespace cc { | 
| 140 typedef ScopedPtrVector<RenderPass> RenderPassList; | 139 typedef ScopedPtrVector<RenderPass> RenderPassList; | 
| 141 typedef base::hash_map<RenderPass::Id, RenderPass*> RenderPassIdHashMap; | 140 typedef base::hash_map<RenderPass::Id, RenderPass*> RenderPassIdHashMap; | 
| 142 }  // namespace cc | 141 }  // namespace cc | 
| 143 | 142 | 
| 144 #endif  // CC_QUADS_RENDER_PASS_H_ | 143 #endif  // CC_QUADS_RENDER_PASS_H_ | 
| OLD | NEW | 
|---|