| 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 CC_LAYERS_PICTURE_LAYER_IMPL_H_ |    5 #ifndef CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 
|    6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_ |    6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 
|    7  |    7  | 
|    8 #include <string> |    8 #include <string> | 
|    9 #include <vector> |    9 #include <vector> | 
|   10  |   10  | 
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   48                                       float page_scale_factor, |   48                                       float page_scale_factor, | 
|   49                                       bool animating_transform_to_screen, |   49                                       bool animating_transform_to_screen, | 
|   50                                       float* contents_scale_x, |   50                                       float* contents_scale_x, | 
|   51                                       float* contents_scale_y, |   51                                       float* contents_scale_y, | 
|   52                                       gfx::Size* content_bounds) OVERRIDE; |   52                                       gfx::Size* content_bounds) OVERRIDE; | 
|   53   virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE; |   53   virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE; | 
|   54  |   54  | 
|   55   // PictureLayerTilingClient overrides. |   55   // PictureLayerTilingClient overrides. | 
|   56   virtual scoped_refptr<Tile> CreateTile(PictureLayerTiling* tiling, |   56   virtual scoped_refptr<Tile> CreateTile(PictureLayerTiling* tiling, | 
|   57                                          gfx::Rect content_rect) OVERRIDE; |   57                                          gfx::Rect content_rect) OVERRIDE; | 
 |   58   virtual scoped_refptr<TileBundle> CreateTileBundle(int offset_x, | 
 |   59                                                      int offset_y, | 
 |   60                                                      int width, | 
 |   61                                                      int height) OVERRIDE; | 
|   58   virtual void UpdatePile(Tile* tile) OVERRIDE; |   62   virtual void UpdatePile(Tile* tile) OVERRIDE; | 
|   59   virtual gfx::Size CalculateTileSize( |   63   virtual gfx::Size CalculateTileSize( | 
|   60       gfx::Size content_bounds) const OVERRIDE; |   64       gfx::Size content_bounds) const OVERRIDE; | 
|   61   virtual const Region* GetInvalidation() OVERRIDE; |   65   virtual const Region* GetInvalidation() OVERRIDE; | 
|   62   virtual const PictureLayerTiling* GetTwinTiling( |   66   virtual const PictureLayerTiling* GetTwinTiling( | 
|   63       const PictureLayerTiling* tiling) const OVERRIDE; |   67       const PictureLayerTiling* tiling) const OVERRIDE; | 
|   64  |   68  | 
|   65   // PushPropertiesTo active tree => pending tree. |   69   // PushPropertiesTo active tree => pending tree. | 
|   66   void SyncTiling(const PictureLayerTiling* tiling); |   70   void SyncTiling(const PictureLayerTiling* tiling); | 
|   67  |   71  | 
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  142   // after a CalculateContentsScale/ManageTilings. |  146   // after a CalculateContentsScale/ManageTilings. | 
|  143   bool should_update_tile_priorities_; |  147   bool should_update_tile_priorities_; | 
|  144  |  148  | 
|  145   friend class PictureLayer; |  149   friend class PictureLayer; | 
|  146   DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); |  150   DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); | 
|  147 }; |  151 }; | 
|  148  |  152  | 
|  149 }  // namespace cc |  153 }  // namespace cc | 
|  150  |  154  | 
|  151 #endif  // CC_LAYERS_PICTURE_LAYER_IMPL_H_ |  155 #endif  // CC_LAYERS_PICTURE_LAYER_IMPL_H_ | 
| OLD | NEW |