OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 UI_COMPOSITOR_LAYER_H_ | 5 #ifndef UI_COMPOSITOR_LAYER_H_ |
6 #define UI_COMPOSITOR_LAYER_H_ | 6 #define UI_COMPOSITOR_LAYER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 // Notifies the layer that one of its children has received a new | 342 // Notifies the layer that one of its children has received a new |
343 // delegated frame. | 343 // delegated frame. |
344 void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip); | 344 void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip); |
345 | 345 |
346 // Requets a copy of the layer's output as a texture or bitmap. | 346 // Requets a copy of the layer's output as a texture or bitmap. |
347 void RequestCopyOfOutput(scoped_ptr<cc::CopyOutputRequest> request); | 347 void RequestCopyOfOutput(scoped_ptr<cc::CopyOutputRequest> request); |
348 | 348 |
349 // ContentLayerClient | 349 // ContentLayerClient |
350 gfx::Rect PaintableRegion() override; | 350 gfx::Rect PaintableRegion() override; |
351 scoped_refptr<cc::DisplayItemList> PaintContentsToDisplayList( | 351 scoped_refptr<cc::DisplayItemList> PaintContentsToDisplayList( |
352 const gfx::Rect& clip, | |
353 ContentLayerClient::PaintingControlSetting painting_control) override; | 352 ContentLayerClient::PaintingControlSetting painting_control) override; |
354 bool FillsBoundsCompletely() const override; | 353 bool FillsBoundsCompletely() const override; |
355 size_t GetApproximateUnsharedMemoryUsage() const override; | 354 size_t GetApproximateUnsharedMemoryUsage() const override; |
356 | 355 |
357 cc::Layer* cc_layer_for_testing() { return cc_layer_; } | 356 cc::Layer* cc_layer_for_testing() { return cc_layer_; } |
358 | 357 |
359 // TextureLayerClient | 358 // TextureLayerClient |
360 bool PrepareTextureMailbox( | 359 bool PrepareTextureMailbox( |
361 cc::TextureMailbox* mailbox, | 360 cc::TextureMailbox* mailbox, |
362 scoped_ptr<cc::SingleReleaseCallback>* release_callback, | 361 scoped_ptr<cc::SingleReleaseCallback>* release_callback, |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 // The size of the frame or texture in DIP, set when SetShowDelegatedContent | 534 // The size of the frame or texture in DIP, set when SetShowDelegatedContent |
536 // or SetTextureMailbox was called. | 535 // or SetTextureMailbox was called. |
537 gfx::Size frame_size_in_dip_; | 536 gfx::Size frame_size_in_dip_; |
538 | 537 |
539 DISALLOW_COPY_AND_ASSIGN(Layer); | 538 DISALLOW_COPY_AND_ASSIGN(Layer); |
540 }; | 539 }; |
541 | 540 |
542 } // namespace ui | 541 } // namespace ui |
543 | 542 |
544 #endif // UI_COMPOSITOR_LAYER_H_ | 543 #endif // UI_COMPOSITOR_LAYER_H_ |
OLD | NEW |