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

Side by Side Diff: cc/output/overlay_processor.cc

Issue 416273005: cc/output: cleanup: Remove unnecessary #includes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/output/overlay_candidate_validator.h ('k') | cc/output/overlay_strategy_single_on_top.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/output/overlay_processor.h" 5 #include "cc/output/overlay_processor.h"
6 6
7 #include "cc/output/output_surface.h" 7 #include "cc/output/output_surface.h"
8 #include "cc/output/overlay_strategy_single_on_top.h" 8 #include "cc/output/overlay_strategy_single_on_top.h"
9 #include "cc/quads/draw_quad.h" 9 #include "ui/gfx/geometry/rect_conversions.h"
10 #include "cc/quads/texture_draw_quad.h"
11 #include "ui/gfx/rect_conversions.h"
12 #include "ui/gfx/transform.h" 10 #include "ui/gfx/transform.h"
13 11
14 namespace cc { 12 namespace cc {
15 13
16 OverlayProcessor::OverlayProcessor(OutputSurface* surface, 14 OverlayProcessor::OverlayProcessor(OutputSurface* surface,
17 ResourceProvider* resource_provider) 15 ResourceProvider* resource_provider)
18 : surface_(surface), resource_provider_(resource_provider) {} 16 : surface_(surface), resource_provider_(resource_provider) {}
19 17
20 void OverlayProcessor::Initialize() { 18 void OverlayProcessor::Initialize() {
21 DCHECK(surface_); 19 DCHECK(surface_);
(...skipping 14 matching lines...) Expand all
36 RenderPassList* render_passes_in_draw_order, 34 RenderPassList* render_passes_in_draw_order,
37 OverlayCandidateList* candidate_list) { 35 OverlayCandidateList* candidate_list) {
38 for (StrategyList::iterator it = strategies_.begin(); it != strategies_.end(); 36 for (StrategyList::iterator it = strategies_.begin(); it != strategies_.end();
39 ++it) { 37 ++it) {
40 if ((*it)->Attempt(render_passes_in_draw_order, candidate_list)) 38 if ((*it)->Attempt(render_passes_in_draw_order, candidate_list))
41 return; 39 return;
42 } 40 }
43 } 41 }
44 42
45 } // namespace cc 43 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/overlay_candidate_validator.h ('k') | cc/output/overlay_strategy_single_on_top.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698