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

Side by Side Diff: ui/views/widget/tooltip_manager.h

Issue 1915363002: Rename gfx::Display/Screen to display::Display/Screen in views/wm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more cleanups Created 4 years, 7 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/native_widget_aura_unittest.cc ('k') | ui/views/widget/tooltip_manager_aura.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_ 5 #ifndef UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_
6 #define UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_ 6 #define UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "ui/views/views_export.h" 11 #include "ui/views/views_export.h"
12 12
13 namespace gfx { 13 namespace gfx {
14 class Display;
15 class FontList; 14 class FontList;
16 class Point; 15 class Point;
17 } // namespace gfx 16 } // namespace gfx
18 17
19 namespace views { 18 namespace views {
20 19
21 class View; 20 class View;
22 21
23 // TooltipManager takes care of the wiring to support tooltips for Views. You 22 // TooltipManager takes care of the wiring to support tooltips for Views. You
24 // almost never need to interact directly with TooltipManager, rather look to 23 // almost never need to interact directly with TooltipManager, rather look to
(...skipping 22 matching lines...) Expand all
47 // Notification that the view hierarchy has changed in some way. 46 // Notification that the view hierarchy has changed in some way.
48 virtual void UpdateTooltip() = 0; 47 virtual void UpdateTooltip() = 0;
49 48
50 // Invoked when the tooltip text changes for the specified views. 49 // Invoked when the tooltip text changes for the specified views.
51 virtual void TooltipTextChanged(View* view) = 0; 50 virtual void TooltipTextChanged(View* view) = 0;
52 }; 51 };
53 52
54 } // namespace views 53 } // namespace views
55 54
56 #endif // UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_ 55 #endif // UI_VIEWS_WIDGET_TOOLTIP_MANAGER_H_
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_aura_unittest.cc ('k') | ui/views/widget/tooltip_manager_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698