| 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/touch/touch_observer_hud.h" | 5 #include "ash/touch/touch_observer_hud.h" |
| 6 | 6 |
| 7 #include "ash/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
| 8 #include "ash/root_window_settings.h" | 8 #include "ash/root_window_settings.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 28 matching lines...) Expand all Loading... |
| 39 params.parent = | 39 params.parent = |
| 40 Shell::GetContainer(root_window_, kShellWindowId_OverlayContainer); | 40 Shell::GetContainer(root_window_, kShellWindowId_OverlayContainer); |
| 41 widget_->Init(params); | 41 widget_->Init(params); |
| 42 widget_->SetContentsView(content); | 42 widget_->SetContentsView(content); |
| 43 widget_->StackAtTop(); | 43 widget_->StackAtTop(); |
| 44 widget_->Show(); | 44 widget_->Show(); |
| 45 | 45 |
| 46 widget_->AddObserver(this); | 46 widget_->AddObserver(this); |
| 47 | 47 |
| 48 // Observe changes in display size and mode to update touch HUD. | 48 // Observe changes in display size and mode to update touch HUD. |
| 49 Shell::GetScreen()->AddObserver(this); | 49 gfx::Screen::GetScreen()->AddObserver(this); |
| 50 #if defined(OS_CHROMEOS) | 50 #if defined(OS_CHROMEOS) |
| 51 Shell::GetInstance()->display_configurator()->AddObserver(this); | 51 Shell::GetInstance()->display_configurator()->AddObserver(this); |
| 52 #endif // defined(OS_CHROMEOS) | 52 #endif // defined(OS_CHROMEOS) |
| 53 | 53 |
| 54 Shell::GetInstance()->window_tree_host_manager()->AddObserver(this); | 54 Shell::GetInstance()->window_tree_host_manager()->AddObserver(this); |
| 55 root_window_->AddPreTargetHandler(this); | 55 root_window_->AddPreTargetHandler(this); |
| 56 } | 56 } |
| 57 | 57 |
| 58 TouchObserverHUD::~TouchObserverHUD() { | 58 TouchObserverHUD::~TouchObserverHUD() { |
| 59 Shell::GetInstance()->window_tree_host_manager()->RemoveObserver(this); | 59 Shell::GetInstance()->window_tree_host_manager()->RemoveObserver(this); |
| 60 | 60 |
| 61 #if defined(OS_CHROMEOS) | 61 #if defined(OS_CHROMEOS) |
| 62 Shell::GetInstance()->display_configurator()->RemoveObserver(this); | 62 Shell::GetInstance()->display_configurator()->RemoveObserver(this); |
| 63 #endif // defined(OS_CHROMEOS) | 63 #endif // defined(OS_CHROMEOS) |
| 64 Shell::GetScreen()->RemoveObserver(this); | 64 gfx::Screen::GetScreen()->RemoveObserver(this); |
| 65 | 65 |
| 66 widget_->RemoveObserver(this); | 66 widget_->RemoveObserver(this); |
| 67 } | 67 } |
| 68 | 68 |
| 69 void TouchObserverHUD::Clear() { | 69 void TouchObserverHUD::Clear() { |
| 70 } | 70 } |
| 71 | 71 |
| 72 void TouchObserverHUD::Remove() { | 72 void TouchObserverHUD::Remove() { |
| 73 root_window_->RemovePreTargetHandler(this); | 73 root_window_->RemovePreTargetHandler(this); |
| 74 | 74 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 widget_->GetNativeView(), | 144 widget_->GetNativeView(), |
| 145 Shell::GetContainer(root_window_, kShellWindowId_OverlayContainer)); | 145 Shell::GetContainer(root_window_, kShellWindowId_OverlayContainer)); |
| 146 | 146 |
| 147 RootWindowController* controller = GetRootWindowController(root_window_); | 147 RootWindowController* controller = GetRootWindowController(root_window_); |
| 148 SetHudForRootWindowController(controller); | 148 SetHudForRootWindowController(controller); |
| 149 | 149 |
| 150 root_window_->AddPreTargetHandler(this); | 150 root_window_->AddPreTargetHandler(this); |
| 151 } | 151 } |
| 152 | 152 |
| 153 } // namespace ash | 153 } // namespace ash |
| OLD | NEW |