Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Side by Side Diff: ash/wm/panels/panel_window_event_handler.cc

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/wm/panels/panel_window_event_handler.h ('k') | ash/wm/panels/panel_window_resizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/wm/panels/panel_window_event_handler.h" 5 #include "ash/wm/panels/panel_window_event_handler.h"
6 6
7 #include "ash/metrics/user_metrics_recorder.h" 7 #include "ash/metrics/user_metrics_recorder.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/wm/window_state.h" 9 #include "ash/wm/window_state.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
11 #include "ui/aura/window_delegate.h" 11 #include "ui/aura/window_delegate.h"
12 #include "ui/base/hit_test.h" 12 #include "ui/base/hit_test.h"
13 #include "ui/events/event.h" 13 #include "ui/events/event.h"
14 14
15 namespace ash { 15 namespace ash {
16 namespace internal {
17 16
18 PanelWindowEventHandler::PanelWindowEventHandler() { 17 PanelWindowEventHandler::PanelWindowEventHandler() {
19 } 18 }
20 19
21 PanelWindowEventHandler::~PanelWindowEventHandler() { 20 PanelWindowEventHandler::~PanelWindowEventHandler() {
22 } 21 }
23 22
24 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) { 23 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) {
25 aura::Window* target = static_cast<aura::Window*>(event->target()); 24 aura::Window* target = static_cast<aura::Window*>(event->target());
26 if (!event->handled() && 25 if (!event->handled() &&
(...skipping 18 matching lines...) Expand all
45 target->delegate()->GetNonClientComponent(event->location()) == 44 target->delegate()->GetNonClientComponent(event->location()) ==
46 HTCAPTION) { 45 HTCAPTION) {
47 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( 46 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction(
48 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE); 47 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE);
49 wm::GetWindowState(target)->Minimize(); 48 wm::GetWindowState(target)->Minimize();
50 event->StopPropagation(); 49 event->StopPropagation();
51 return; 50 return;
52 } 51 }
53 } 52 }
54 53
55 } // namespace internal
56 } // namespace ash 54 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_window_event_handler.h ('k') | ash/wm/panels/panel_window_resizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698