| OLD | NEW | 
|---|
| 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  Loading... | 
| 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_ | 
| OLD | NEW | 
|---|