| Index: cc/test/fake_tile_manager_client.h
|
| diff --git a/cc/test/fake_tile_manager_client.h b/cc/test/fake_tile_manager_client.h
|
| index 7faa30ed382f28791dbcc7ad39852a0ff567280e..c3b088c0dd5f3c17e86c614877c4937343ffcc95 100644
|
| --- a/cc/test/fake_tile_manager_client.h
|
| +++ b/cc/test/fake_tile_manager_client.h
|
| @@ -5,15 +5,19 @@
|
| #ifndef CC_TEST_FAKE_TILE_MANAGER_CLIENT_H_
|
| #define CC_TEST_FAKE_TILE_MANAGER_CLIENT_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "cc/resources/tile_manager.h"
|
|
|
| namespace cc {
|
|
|
| class FakeTileManagerClient : public TileManagerClient {
|
| public:
|
| - virtual ~FakeTileManagerClient() {}
|
| + FakeTileManagerClient();
|
| + virtual ~FakeTileManagerClient();
|
|
|
| // TileManagerClient implementation.
|
| + virtual const std::vector<PictureLayerImpl*>& GetPictureLayers() OVERRIDE;
|
| virtual void NotifyReadyToActivate() OVERRIDE {}
|
| virtual void NotifyTileStateChanged(const Tile* tile) OVERRIDE {}
|
| };
|
|
|