| 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 "ui/views/widget/tooltip_manager_aura.h" | 5 #include "ui/views/widget/tooltip_manager_aura.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "ui/aura/client/screen_position_client.h" | 8 #include "ui/aura/client/screen_position_client.h" |
| 9 #include "ui/aura/client/tooltip_client.h" | 9 #include "ui/aura/client/tooltip_client.h" |
| 10 #include "ui/aura/root_window.h" | 10 #include "ui/aura/window_event_dispatcher.h" |
| 11 #include "ui/base/resource/resource_bundle.h" | 11 #include "ui/base/resource/resource_bundle.h" |
| 12 #include "ui/gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
| 13 #include "ui/gfx/screen.h" | 13 #include "ui/gfx/screen.h" |
| 14 #include "ui/views/widget/widget.h" | 14 #include "ui/views/widget/widget.h" |
| 15 | 15 |
| 16 namespace views { | 16 namespace views { |
| 17 | 17 |
| 18 // static | 18 // static |
| 19 int TooltipManager::GetTooltipHeight() { | 19 int TooltipManager::GetTooltipHeight() { |
| 20 // Not used for linux and chromeos. | 20 // Not used for linux and chromeos. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 tooltip_text_.clear(); | 133 tooltip_text_.clear(); |
| 134 } | 134 } |
| 135 aura::client::GetTooltipClient(root_window)->UpdateTooltip(GetWindow()); | 135 aura::client::GetTooltipClient(root_window)->UpdateTooltip(GetWindow()); |
| 136 } | 136 } |
| 137 | 137 |
| 138 aura::Window* TooltipManagerAura::GetWindow() { | 138 aura::Window* TooltipManagerAura::GetWindow() { |
| 139 return widget_->GetNativeView(); | 139 return widget_->GetNativeView(); |
| 140 } | 140 } |
| 141 | 141 |
| 142 } // namespace views. | 142 } // namespace views. |
| OLD | NEW |