Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/launcher/launcher_tooltip_manager.h" | 5 #include "ash/launcher/launcher_tooltip_manager.h" |
| 6 | 6 |
| 7 #include "ash/launcher/launcher_view.h" | 7 #include "ash/launcher/launcher_view.h" |
| 8 #include "ash/shelf/shelf_layout_manager.h" | 8 #include "ash/shelf/shelf_layout_manager.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 249 | 249 |
| 250 void LauncherTooltipManager::OnMouseEvent(ui::MouseEvent* event) { | 250 void LauncherTooltipManager::OnMouseEvent(ui::MouseEvent* event) { |
| 251 DCHECK(event); | 251 DCHECK(event); |
| 252 DCHECK(event->target()); | 252 DCHECK(event->target()); |
| 253 if (!widget_ || !widget_->IsVisible()) | 253 if (!widget_ || !widget_->IsVisible()) |
| 254 return; | 254 return; |
| 255 | 255 |
| 256 DCHECK(view_); | 256 DCHECK(view_); |
| 257 DCHECK(launcher_view_); | 257 DCHECK(launcher_view_); |
| 258 | 258 |
| 259 // When mouse button is pressed in anywhere, tooltip should to be closed. | |
|
Mr4D (OOO till 08-26)
2013/09/03 15:00:27
Could you change the comment to something like:
P
simonhong_
2013/09/04 00:41:01
Done.
| |
| 260 if (event->type() == ui::ET_MOUSE_PRESSED) { | |
| 261 CloseSoon(); | |
| 262 return; | |
| 263 } | |
| 264 | |
| 259 aura::Window* target = static_cast<aura::Window*>(event->target()); | 265 aura::Window* target = static_cast<aura::Window*>(event->target()); |
| 260 if (widget_->GetNativeWindow()->GetRootWindow() != target->GetRootWindow()) { | 266 if (widget_->GetNativeWindow()->GetRootWindow() != target->GetRootWindow()) { |
| 261 CloseSoon(); | 267 CloseSoon(); |
| 262 return; | 268 return; |
| 263 } | 269 } |
| 264 | 270 |
| 265 gfx::Point location_in_launcher_view = event->location(); | 271 gfx::Point location_in_launcher_view = event->location(); |
| 266 aura::Window::ConvertPointToTarget( | 272 aura::Window::ConvertPointToTarget( |
| 267 target, launcher_view_->GetWidget()->GetNativeWindow(), | 273 target, launcher_view_->GetWidget()->GetNativeWindow(), |
| 268 &location_in_launcher_view); | 274 &location_in_launcher_view); |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 367 new_timer->Start( | 373 new_timer->Start( |
| 368 FROM_HERE, | 374 FROM_HERE, |
| 369 base::TimeDelta::FromMilliseconds(delay_in_ms), | 375 base::TimeDelta::FromMilliseconds(delay_in_ms), |
| 370 this, | 376 this, |
| 371 &LauncherTooltipManager::ShowInternal); | 377 &LauncherTooltipManager::ShowInternal); |
| 372 timer_.reset(new_timer); | 378 timer_.reset(new_timer); |
| 373 } | 379 } |
| 374 | 380 |
| 375 } // namespace internal | 381 } // namespace internal |
| 376 } // namespace ash | 382 } // namespace ash |
| OLD | NEW |