| 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_SYSTEM_PALETTE_PALETTE_TRAY_H_ | 5 #ifndef ASH_SYSTEM_PALETTE_PALETTE_TRAY_H_ |
| 6 #define ASH_SYSTEM_PALETTE_PALETTE_TRAY_H_ | 6 #define ASH_SYSTEM_PALETTE_PALETTE_TRAY_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "ash/palette_delegate.h" | 12 #include "ash/common/palette_delegate.h" |
| 13 #include "ash/session/session_state_observer.h" | 13 #include "ash/common/session/session_state_observer.h" |
| 14 #include "ash/shell_observer.h" | 14 #include "ash/common/shell_observer.h" |
| 15 #include "ash/system/palette/palette_tool_manager.h" | 15 #include "ash/system/palette/palette_tool_manager.h" |
| 16 #include "ash/system/tray/tray_background_view.h" | 16 #include "ash/system/tray/tray_background_view.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 19 #include "ui/events/devices/input_device_event_observer.h" | 19 #include "ui/events/devices/input_device_event_observer.h" |
| 20 | 20 |
| 21 namespace gfx { | 21 namespace gfx { |
| 22 class Point; | 22 class Point; |
| 23 } | 23 } |
| 24 | 24 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 int num_actions_in_bubble_ = 0; | 135 int num_actions_in_bubble_ = 0; |
| 136 | 136 |
| 137 base::WeakPtrFactory<PaletteTray> weak_factory_; | 137 base::WeakPtrFactory<PaletteTray> weak_factory_; |
| 138 | 138 |
| 139 DISALLOW_COPY_AND_ASSIGN(PaletteTray); | 139 DISALLOW_COPY_AND_ASSIGN(PaletteTray); |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 } // namespace ash | 142 } // namespace ash |
| 143 | 143 |
| 144 #endif // ASH_SYSTEM_PALETTE_PALETTE_TRAY_H_ | 144 #endif // ASH_SYSTEM_PALETTE_PALETTE_TRAY_H_ |
| OLD | NEW |