| Index: cc/paint/filter_operations.h
|
| diff --git a/cc/output/filter_operations.h b/cc/paint/filter_operations.h
|
| similarity index 91%
|
| rename from cc/output/filter_operations.h
|
| rename to cc/paint/filter_operations.h
|
| index b5eb78026755ea3994de2372e99b60f4173796df..667be1795035002f63e13a0fa79cc7e5b04344d9 100644
|
| --- a/cc/output/filter_operations.h
|
| +++ b/cc/paint/filter_operations.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CC_OUTPUT_FILTER_OPERATIONS_H_
|
| -#define CC_OUTPUT_FILTER_OPERATIONS_H_
|
| +#ifndef CC_PAINT_FILTER_OPERATIONS_H_
|
| +#define CC_PAINT_FILTER_OPERATIONS_H_
|
|
|
| #include <stddef.h>
|
|
|
| @@ -11,7 +11,7 @@
|
| #include <vector>
|
|
|
| #include "base/logging.h"
|
| -#include "cc/output/filter_operation.h"
|
| +#include "cc/paint/filter_operation.h"
|
|
|
| namespace base {
|
| namespace trace_event {
|
| @@ -26,7 +26,7 @@ class Rect;
|
| namespace cc {
|
|
|
| // An ordered list of filter operations.
|
| -class CC_EXPORT FilterOperations {
|
| +class CC_PAINT_EXPORT FilterOperations {
|
| public:
|
| FilterOperations();
|
|
|
| @@ -66,9 +66,7 @@ class CC_EXPORT FilterOperations {
|
| bool HasFilterThatAffectsOpacity() const;
|
| bool HasReferenceFilter() const;
|
|
|
| - size_t size() const {
|
| - return operations_.size();
|
| - }
|
| + size_t size() const { return operations_.size(); }
|
|
|
| const std::vector<FilterOperation>& operations() const { return operations_; }
|
|
|
| @@ -98,4 +96,4 @@ class CC_EXPORT FilterOperations {
|
|
|
| } // namespace cc
|
|
|
| -#endif // CC_OUTPUT_FILTER_OPERATIONS_H_
|
| +#endif // CC_PAINT_FILTER_OPERATIONS_H_
|
|
|