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

Side by Side Diff: ui/views/widget/tooltip_manager_aura.cc

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 years, 11 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
« no previous file with comments | « ui/views/widget/tooltip_manager.cc ('k') | ui/views/widget/widget.h » ('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 (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/window_event_dispatcher.h" 9 #include "ui/aura/window_event_dispatcher.h"
10 #include "ui/aura/window_tree_host.h" 10 #include "ui/aura/window_tree_host.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/geometry/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 #include "ui/wm/public/tooltip_client.h" 15 #include "ui/wm/public/tooltip_client.h"
16 16
17 namespace views { 17 namespace views {
18 18
19 //////////////////////////////////////////////////////////////////////////////// 19 ////////////////////////////////////////////////////////////////////////////////
20 // TooltipManagerAura public: 20 // TooltipManagerAura public:
21 21
22 TooltipManagerAura::TooltipManagerAura(Widget* widget) : widget_(widget) { 22 TooltipManagerAura::TooltipManagerAura(Widget* widget) : widget_(widget) {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 aura::client::SetTooltipId(GetWindow(), target); 130 aura::client::SetTooltipId(GetWindow(), target);
131 131
132 aura::client::GetTooltipClient(root_window)->UpdateTooltip(GetWindow()); 132 aura::client::GetTooltipClient(root_window)->UpdateTooltip(GetWindow());
133 } 133 }
134 134
135 aura::Window* TooltipManagerAura::GetWindow() { 135 aura::Window* TooltipManagerAura::GetWindow() {
136 return widget_->GetNativeView(); 136 return widget_->GetNativeView();
137 } 137 }
138 138
139 } // namespace views. 139 } // namespace views.
OLDNEW
« no previous file with comments | « ui/views/widget/tooltip_manager.cc ('k') | ui/views/widget/widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698