| 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 ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_PALETTE_TOOL_H_ | 5 #ifndef ASH_SYSTEM_PALETTE_PALETTE_TOOL_H_ |
| 6 #define ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_PALETTE_TOOL_H_ | 6 #define ASH_SYSTEM_PALETTE_PALETTE_TOOL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
| 13 #include "ash/common/system/chromeos/palette/palette_ids.h" | 13 #include "ash/system/palette/palette_ids.h" |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "ui/gfx/vector_icon_types.h" | 16 #include "ui/gfx/vector_icon_types.h" |
| 17 | 17 |
| 18 namespace gfx { | 18 namespace gfx { |
| 19 struct VectorIcon; | 19 struct VectorIcon; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace views { | 22 namespace views { |
| 23 class View; | 23 class View; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 bool enabled_ = false; | 110 bool enabled_ = false; |
| 111 | 111 |
| 112 // Unowned pointer to the delegate. The delegate should outlive this instance. | 112 // Unowned pointer to the delegate. The delegate should outlive this instance. |
| 113 Delegate* delegate_; | 113 Delegate* delegate_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(PaletteTool); | 115 DISALLOW_COPY_AND_ASSIGN(PaletteTool); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace ash | 118 } // namespace ash |
| 119 | 119 |
| 120 #endif // ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_PALETTE_TOOL_H_ | 120 #endif // ASH_SYSTEM_PALETTE_PALETTE_TOOL_H_ |
| OLD | NEW |