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

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

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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/layers/io_surface_layer_impl_unittest.cc ('k') | cc/layers/layer.cc » ('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>
9 #include <stdint.h>
10
8 #include <set> 11 #include <set>
9 #include <string> 12 #include <string>
10 #include <vector> 13 #include <vector>
11 14
12 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
14 #include "base/observer_list.h" 18 #include "base/observer_list.h"
15 #include "cc/animation/layer_animation_controller.h" 19 #include "cc/animation/layer_animation_controller.h"
16 #include "cc/animation/layer_animation_value_observer.h" 20 #include "cc/animation/layer_animation_value_observer.h"
17 #include "cc/animation/layer_animation_value_provider.h" 21 #include "cc/animation/layer_animation_value_provider.h"
18 #include "cc/base/cc_export.h" 22 #include "cc/base/cc_export.h"
19 #include "cc/base/region.h" 23 #include "cc/base/region.h"
20 #include "cc/debug/frame_timing_request.h" 24 #include "cc/debug/frame_timing_request.h"
21 #include "cc/debug/micro_benchmark.h" 25 #include "cc/debug/micro_benchmark.h"
22 #include "cc/layers/layer_lists.h" 26 #include "cc/layers/layer_lists.h"
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 std::vector<FrameTimingRequest> frame_timing_requests_; 800 std::vector<FrameTimingRequest> frame_timing_requests_;
797 bool frame_timing_requests_dirty_; 801 bool frame_timing_requests_dirty_;
798 bool is_hidden_from_property_trees_; 802 bool is_hidden_from_property_trees_;
799 803
800 DISALLOW_COPY_AND_ASSIGN(Layer); 804 DISALLOW_COPY_AND_ASSIGN(Layer);
801 }; 805 };
802 806
803 } // namespace cc 807 } // namespace cc
804 808
805 #endif // CC_LAYERS_LAYER_H_ 809 #endif // CC_LAYERS_LAYER_H_
OLDNEW
« no previous file with comments | « cc/layers/io_surface_layer_impl_unittest.cc ('k') | cc/layers/layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698