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

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

Issue 1939143002: Remove all uses of skia::RefPtr and stale includes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_IMPL_H_ 5 #ifndef CC_LAYERS_LAYER_IMPL_H_
6 #define CC_LAYERS_LAYER_IMPL_H_ 6 #define CC_LAYERS_LAYER_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 16 matching lines...) Expand all
27 #include "cc/layers/layer_collections.h" 27 #include "cc/layers/layer_collections.h"
28 #include "cc/layers/layer_impl_test_properties.h" 28 #include "cc/layers/layer_impl_test_properties.h"
29 #include "cc/layers/layer_position_constraint.h" 29 #include "cc/layers/layer_position_constraint.h"
30 #include "cc/layers/performance_properties.h" 30 #include "cc/layers/performance_properties.h"
31 #include "cc/layers/render_surface_impl.h" 31 #include "cc/layers/render_surface_impl.h"
32 #include "cc/output/filter_operations.h" 32 #include "cc/output/filter_operations.h"
33 #include "cc/quads/shared_quad_state.h" 33 #include "cc/quads/shared_quad_state.h"
34 #include "cc/resources/resource_provider.h" 34 #include "cc/resources/resource_provider.h"
35 #include "cc/tiles/tile_priority.h" 35 #include "cc/tiles/tile_priority.h"
36 #include "third_party/skia/include/core/SkColor.h" 36 #include "third_party/skia/include/core/SkColor.h"
37 #include "third_party/skia/include/core/SkImageFilter.h" 37 #include "third_party/skia/include/core/SkXfermode.h"
38 #include "ui/gfx/geometry/point3_f.h" 38 #include "ui/gfx/geometry/point3_f.h"
39 #include "ui/gfx/geometry/rect.h" 39 #include "ui/gfx/geometry/rect.h"
40 #include "ui/gfx/geometry/rect_f.h" 40 #include "ui/gfx/geometry/rect_f.h"
41 #include "ui/gfx/geometry/scroll_offset.h" 41 #include "ui/gfx/geometry/scroll_offset.h"
42 #include "ui/gfx/transform.h" 42 #include "ui/gfx/transform.h"
43 43
44 namespace base { 44 namespace base {
45 namespace trace_event { 45 namespace trace_event {
46 class ConvertableToTraceFormat; 46 class ConvertableToTraceFormat;
47 class TracedValue; 47 class TracedValue;
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 bool scrolls_drawn_descendant_; 669 bool scrolls_drawn_descendant_;
670 // If true, the layer or one of its descendants has a touch handler. 670 // If true, the layer or one of its descendants has a touch handler.
671 bool layer_or_descendant_has_touch_handler_; 671 bool layer_or_descendant_has_touch_handler_;
672 672
673 DISALLOW_COPY_AND_ASSIGN(LayerImpl); 673 DISALLOW_COPY_AND_ASSIGN(LayerImpl);
674 }; 674 };
675 675
676 } // namespace cc 676 } // namespace cc
677 677
678 #endif // CC_LAYERS_LAYER_IMPL_H_ 678 #endif // CC_LAYERS_LAYER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698