Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1723)

Side by Side Diff: cc/layers/layer.h

Issue 1801853002: Transfer LayerImpl ownership to LayerTreeImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more asan. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/debug/debug_rect_history.h ('k') | cc/layers/layer_collections.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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_LAYER_H_ 5 #ifndef CC_LAYERS_LAYER_H_
6 #define CC_LAYERS_LAYER_H_ 6 #define CC_LAYERS_LAYER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <unordered_map> 13 #include <unordered_map>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/callback.h" 16 #include "base/callback.h"
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "base/memory/ref_counted.h" 18 #include "base/memory/ref_counted.h"
19 #include "base/observer_list.h" 19 #include "base/observer_list.h"
20 #include "cc/animation/target_property.h" 20 #include "cc/animation/target_property.h"
21 #include "cc/base/cc_export.h" 21 #include "cc/base/cc_export.h"
22 #include "cc/base/region.h" 22 #include "cc/base/region.h"
23 #include "cc/debug/frame_timing_request.h" 23 #include "cc/debug/frame_timing_request.h"
24 #include "cc/debug/micro_benchmark.h" 24 #include "cc/debug/micro_benchmark.h"
25 #include "cc/input/input_handler.h" 25 #include "cc/input/input_handler.h"
26 #include "cc/layers/layer_lists.h" 26 #include "cc/layers/layer_collections.h"
27 #include "cc/layers/layer_position_constraint.h" 27 #include "cc/layers/layer_position_constraint.h"
28 #include "cc/layers/paint_properties.h" 28 #include "cc/layers/paint_properties.h"
29 #include "cc/output/filter_operations.h" 29 #include "cc/output/filter_operations.h"
30 #include "cc/trees/property_tree.h" 30 #include "cc/trees/property_tree.h"
31 #include "skia/ext/refptr.h" 31 #include "skia/ext/refptr.h"
32 #include "third_party/skia/include/core/SkColor.h" 32 #include "third_party/skia/include/core/SkColor.h"
33 #include "third_party/skia/include/core/SkImageFilter.h" 33 #include "third_party/skia/include/core/SkImageFilter.h"
34 #include "third_party/skia/include/core/SkPicture.h" 34 #include "third_party/skia/include/core/SkPicture.h"
35 #include "third_party/skia/include/core/SkXfermode.h" 35 #include "third_party/skia/include/core/SkXfermode.h"
36 #include "ui/gfx/geometry/point3_f.h" 36 #include "ui/gfx/geometry/point3_f.h"
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 701
702 std::vector<FrameTimingRequest> frame_timing_requests_; 702 std::vector<FrameTimingRequest> frame_timing_requests_;
703 bool frame_timing_requests_dirty_; 703 bool frame_timing_requests_dirty_;
704 704
705 DISALLOW_COPY_AND_ASSIGN(Layer); 705 DISALLOW_COPY_AND_ASSIGN(Layer);
706 }; 706 };
707 707
708 } // namespace cc 708 } // namespace cc
709 709
710 #endif // CC_LAYERS_LAYER_H_ 710 #endif // CC_LAYERS_LAYER_H_
OLDNEW
« no previous file with comments | « cc/debug/debug_rect_history.h ('k') | cc/layers/layer_collections.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698