OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_QUADS_NINE_PATCH_GENERATOR_H_ | 5 #ifndef CC_QUADS_NINE_PATCH_GENERATOR_H_ |
6 #define CC_QUADS_NINE_PATCH_GENERATOR_H_ | 6 #define CC_QUADS_NINE_PATCH_GENERATOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
13 #include "cc/base/cc_export.h" | 13 #include "cc/cc_export.h" |
14 #include "cc/resources/ui_resource_client.h" | 14 #include "cc/resources/ui_resource_client.h" |
15 #include "ui/gfx/geometry/rect.h" | 15 #include "ui/gfx/geometry/rect.h" |
16 #include "ui/gfx/geometry/rect_f.h" | 16 #include "ui/gfx/geometry/rect_f.h" |
17 #include "ui/gfx/geometry/size.h" | 17 #include "ui/gfx/geometry/size.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class DictionaryValue; | 20 class DictionaryValue; |
21 } | 21 } |
22 | 22 |
23 namespace cc { | 23 namespace cc { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 bool fill_center_; | 122 bool fill_center_; |
123 bool nearest_neighbor_; | 123 bool nearest_neighbor_; |
124 | 124 |
125 gfx::Rect output_occlusion_; | 125 gfx::Rect output_occlusion_; |
126 }; | 126 }; |
127 | 127 |
128 } // namespace cc | 128 } // namespace cc |
129 | 129 |
130 #endif // CC_QUADS_NINE_PATCH_GENERATOR_H_ | 130 #endif // CC_QUADS_NINE_PATCH_GENERATOR_H_ |
OLD | NEW |