| 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 #include "ash/shelf/shelf_tooltip_manager.h" | 5 #include "ash/shelf/shelf_tooltip_manager.h" |
| 6 | 6 |
| 7 #include "ash/shelf/shelf.h" | 7 #include "ash/shelf/shelf.h" |
| 8 #include "ash/shelf/shelf_layout_manager.h" | 8 #include "ash/shelf/shelf_layout_manager.h" |
| 9 #include "ash/shelf/shelf_view.h" | 9 #include "ash/shelf/shelf_view.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| 11 #include "ash/shell_window_ids.h" | 11 #include "ash/shell_window_ids.h" |
| 12 #include "ash/wm/window_animations.h" | 12 #include "ash/wm/window_animations.h" |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/thread_task_runner_handle.h" | 14 #include "base/thread_task_runner_handle.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "ui/aura/window.h" | 16 #include "ui/aura/window.h" |
| 17 #include "ui/events/event.h" | 17 #include "ui/events/event.h" |
| 18 #include "ui/events/event_constants.h" | 18 #include "ui/events/event_constants.h" |
| 19 #include "ui/gfx/geometry/insets.h" | 19 #include "ui/gfx/geometry/insets.h" |
| 20 #include "ui/views/bubble/bubble_delegate.h" | 20 #include "ui/views/bubble/bubble_delegate.h" |
| 21 #include "ui/views/controls/label.h" | 21 #include "ui/views/controls/label.h" |
| 22 #include "ui/views/layout/fill_layout.h" | 22 #include "ui/views/layout/fill_layout.h" |
| 23 #include "ui/views/widget/widget.h" | 23 #include "ui/views/widget/widget.h" |
| 24 #include "ui/wm/core/window_animations.h" |
| 24 | 25 |
| 25 namespace ash { | 26 namespace ash { |
| 26 namespace { | 27 namespace { |
| 27 | 28 |
| 28 const int kTooltipTopBottomMargin = 3; | 29 const int kTooltipTopBottomMargin = 3; |
| 29 const int kTooltipLeftRightMargin = 10; | 30 const int kTooltipLeftRightMargin = 10; |
| 30 const int kTooltipAppearanceDelay = 1000; // msec | 31 const int kTooltipAppearanceDelay = 1000; // msec |
| 31 const int kTooltipMinHeight = 29 - 2 * kTooltipTopBottomMargin; | 32 const int kTooltipMinHeight = 29 - 2 * kTooltipTopBottomMargin; |
| 32 const SkColor kTooltipTextColor = SkColorSetRGB(0x22, 0x22, 0x22); | 33 const SkColor kTooltipTextColor = SkColorSetRGB(0x22, 0x22, 0x22); |
| 33 | 34 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // AutoHide state change happens during an event filter, so immediate close | 220 // AutoHide state change happens during an event filter, so immediate close |
| 220 // may cause a crash in the HandleMouseEvent() after the filter. So we just | 221 // may cause a crash in the HandleMouseEvent() after the filter. So we just |
| 221 // schedule the Close here. | 222 // schedule the Close here. |
| 222 base::ThreadTaskRunnerHandle::Get()->PostTask( | 223 base::ThreadTaskRunnerHandle::Get()->PostTask( |
| 223 FROM_HERE, | 224 FROM_HERE, |
| 224 base::Bind(&ShelfTooltipManager::Close, weak_factory_.GetWeakPtr())); | 225 base::Bind(&ShelfTooltipManager::Close, weak_factory_.GetWeakPtr())); |
| 225 } | 226 } |
| 226 } | 227 } |
| 227 | 228 |
| 228 } // namespace ash | 229 } // namespace ash |
| OLD | NEW |