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

Side by Side Diff: cc/output/software_output_device.h

Issue 416273005: cc/output: cleanup: Remove unnecessary #includes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/software_frame_data.h ('k') | cc/output/software_output_device.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 #ifndef CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_ 5 #ifndef CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_
6 #define CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_ 6 #define CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "cc/base/cc_export.h" 10 #include "cc/base/cc_export.h"
11 #include "skia/ext/refptr.h" 11 #include "skia/ext/refptr.h"
12 // TODO(robertphillips): change this to "class SkBaseDevice;" 12 #include "ui/gfx/geometry/rect.h"
13 #include "third_party/skia/include/core/SkDevice.h" 13 #include "ui/gfx/geometry/size.h"
14 #include "ui/gfx/rect.h" 14 #include "ui/gfx/geometry/vector2d.h"
15 #include "ui/gfx/size.h"
16 #include "ui/gfx/vector2d.h"
17 15
18 class SkBitmap; 16 class SkBitmap;
19 class SkCanvas; 17 class SkCanvas;
20 18
21 namespace gfx { 19 namespace gfx {
22 class VSyncProvider; 20 class VSyncProvider;
23 } 21 }
24 22
25 namespace cc { 23 namespace cc {
26 24
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 skia::RefPtr<SkCanvas> canvas_; 78 skia::RefPtr<SkCanvas> canvas_;
81 scoped_ptr<gfx::VSyncProvider> vsync_provider_; 79 scoped_ptr<gfx::VSyncProvider> vsync_provider_;
82 80
83 private: 81 private:
84 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDevice); 82 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDevice);
85 }; 83 };
86 84
87 } // namespace cc 85 } // namespace cc
88 86
89 #endif // CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_ 87 #endif // CC_OUTPUT_SOFTWARE_OUTPUT_DEVICE_H_
OLDNEW
« no previous file with comments | « cc/output/software_frame_data.h ('k') | cc/output/software_output_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698