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

Side by Side Diff: cc/layers/picture_layer_impl.cc

Issue 885543002: Mechanical rename of tracing includes for /cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/layers/painted_scrollbar_layer.cc ('k') | cc/layers/surface_layer_impl.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 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 #include "cc/layers/picture_layer_impl.h" 5 #include "cc/layers/picture_layer_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <limits> 9 #include <limits>
10 #include <set> 10 #include <set>
11 11
12 #include "base/debug/trace_event_argument.h"
13 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "base/trace_event/trace_event_argument.h"
14 #include "cc/base/math_util.h" 14 #include "cc/base/math_util.h"
15 #include "cc/base/util.h" 15 #include "cc/base/util.h"
16 #include "cc/debug/debug_colors.h" 16 #include "cc/debug/debug_colors.h"
17 #include "cc/debug/micro_benchmark_impl.h" 17 #include "cc/debug/micro_benchmark_impl.h"
18 #include "cc/debug/traced_value.h" 18 #include "cc/debug/traced_value.h"
19 #include "cc/layers/append_quads_data.h" 19 #include "cc/layers/append_quads_data.h"
20 #include "cc/layers/solid_color_layer_impl.h" 20 #include "cc/layers/solid_color_layer_impl.h"
21 #include "cc/output/begin_frame_args.h" 21 #include "cc/output/begin_frame_args.h"
22 #include "cc/quads/checkerboard_draw_quad.h" 22 #include "cc/quads/checkerboard_draw_quad.h"
23 #include "cc/quads/debug_border_draw_quad.h" 23 #include "cc/quads/debug_border_draw_quad.h"
(...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 1285
1286 bool PictureLayerImpl::AllTilesRequiredForDrawAreReadyToDraw() const { 1286 bool PictureLayerImpl::AllTilesRequiredForDrawAreReadyToDraw() const {
1287 if (!layer_tree_impl()->IsActiveTree()) 1287 if (!layer_tree_impl()->IsActiveTree())
1288 return true; 1288 return true;
1289 1289
1290 return AllTilesRequiredAreReadyToDraw( 1290 return AllTilesRequiredAreReadyToDraw(
1291 &PictureLayerTiling::IsTileRequiredForDrawIfVisible); 1291 &PictureLayerTiling::IsTileRequiredForDrawIfVisible);
1292 } 1292 }
1293 1293
1294 } // namespace cc 1294 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/painted_scrollbar_layer.cc ('k') | cc/layers/surface_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698