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

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

Issue 2503283002: cc: Cleanup class/struct forward declarations (Closed)
Patch Set: Add missing fwd class decl in blimp_embedder_compositor.h Created 4 years, 1 month 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/filter_operation.h ('k') | cc/output/geometry_binding.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FILTER_OPERATIONS_H_ 5 #ifndef CC_OUTPUT_FILTER_OPERATIONS_H_
6 #define CC_OUTPUT_FILTER_OPERATIONS_H_ 6 #define CC_OUTPUT_FILTER_OPERATIONS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "cc/output/filter_operation.h" 14 #include "cc/output/filter_operation.h"
15 15
16 namespace base { 16 namespace base {
17 namespace trace_event { 17 namespace trace_event {
18 class TracedValue; 18 class TracedValue;
19 } 19 }
20 class Value;
21 } 20 }
22 21
23 namespace gfx { 22 namespace gfx {
24 class Rect; 23 class Rect;
25 } 24 }
26 25
27 namespace cc { 26 namespace cc {
28 27
29 // An ordered list of filter operations. 28 // An ordered list of filter operations.
30 class CC_EXPORT FilterOperations { 29 class CC_EXPORT FilterOperations {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 91
93 void AsValueInto(base::trace_event::TracedValue* value) const; 92 void AsValueInto(base::trace_event::TracedValue* value) const;
94 93
95 private: 94 private:
96 std::vector<FilterOperation> operations_; 95 std::vector<FilterOperation> operations_;
97 }; 96 };
98 97
99 } // namespace cc 98 } // namespace cc
100 99
101 #endif // CC_OUTPUT_FILTER_OPERATIONS_H_ 100 #endif // CC_OUTPUT_FILTER_OPERATIONS_H_
OLDNEW
« no previous file with comments | « cc/output/filter_operation.h ('k') | cc/output/geometry_binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698