| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 CCTiledLayerTestCommon_h | 5 #ifndef CCTiledLayerTestCommon_h |
| 6 #define CCTiledLayerTestCommon_h | 6 #define CCTiledLayerTestCommon_h |
| 7 | 7 |
| 8 #include "CCGraphicsContext.h" | 8 #include "CCGraphicsContext.h" |
| 9 #include "CCPrioritizedTexture.h" | 9 #include "CCPrioritizedTexture.h" |
| 10 #include "CCResourceProvider.h" | 10 #include "cc/resource_provider.h" |
| 11 #include "CCTextureUpdateQueue.h" | 11 #include "cc/texture_update_queue.h" |
| 12 #include "CCTiledLayerImpl.h" | 12 #include "cc/tiled_layer_impl.h" |
| 13 #include "IntRect.h" | 13 #include "IntRect.h" |
| 14 #include "IntSize.h" | 14 #include "IntSize.h" |
| 15 #include "Region.h" | 15 #include "Region.h" |
| 16 #include "cc/layer_texture_updater.h" | 16 #include "cc/layer_texture_updater.h" |
| 17 #include "cc/texture_copier.h" | 17 #include "cc/texture_copier.h" |
| 18 #include "cc/texture_uploader.h" | 18 #include "cc/texture_uploader.h" |
| 19 #include "cc/tiled_layer.h" | 19 #include "cc/tiled_layer.h" |
| 20 | 20 |
| 21 namespace WebKitTests { | 21 namespace WebKitTests { |
| 22 | 22 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 class FakeTextureUploader : public cc::TextureUploader { | 127 class FakeTextureUploader : public cc::TextureUploader { |
| 128 public: | 128 public: |
| 129 virtual size_t numBlockingUploads() OVERRIDE; | 129 virtual size_t numBlockingUploads() OVERRIDE; |
| 130 virtual void markPendingUploadsAsNonBlocking() OVERRIDE; | 130 virtual void markPendingUploadsAsNonBlocking() OVERRIDE; |
| 131 virtual double estimatedTexturesPerSecond() OVERRIDE; | 131 virtual double estimatedTexturesPerSecond() OVERRIDE; |
| 132 virtual void uploadTexture(cc::CCResourceProvider*, Parameters) OVERRIDE; | 132 virtual void uploadTexture(cc::CCResourceProvider*, Parameters) OVERRIDE; |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 } | 135 } |
| 136 #endif // CCTiledLayerTestCommon_h | 136 #endif // CCTiledLayerTestCommon_h |
| OLD | NEW |