diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 20:51:20 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 20:51:20 +0000 |
commit | a0dde12f2e4f92f1a59885c45cfecd10dbfdfdfd (patch) | |
tree | d8283a980977f11c43542016d57f698d3a83b73d /chrome/views/tooltip_manager.h | |
parent | 933cc00eb856db684b9e64b7486ca20edbb2c3ea (diff) | |
download | chromium_src-a0dde12f2e4f92f1a59885c45cfecd10dbfdfdfd.zip chromium_src-a0dde12f2e4f92f1a59885c45cfecd10dbfdfdfd.tar.gz chromium_src-a0dde12f2e4f92f1a59885c45cfecd10dbfdfdfd.tar.bz2 |
Rename Container->Widget
R=erg
review url = http://codereview.chromium.org/11348/show
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5849 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/tooltip_manager.h')
-rw-r--r-- | chrome/views/tooltip_manager.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/views/tooltip_manager.h b/chrome/views/tooltip_manager.h index f1aab66a..2800fb0 100644 --- a/chrome/views/tooltip_manager.h +++ b/chrome/views/tooltip_manager.h @@ -13,11 +13,11 @@ class ChromeFont; namespace views { -class Container; class View; +class Widget; // TooltipManager takes care of the wiring to support tooltips for Views. -// This class is intended to be used by Containers. To use this, you must +// This class is intended to be used by Widgets. To use this, you must // do the following: // Add the following to your MSG_MAP: // @@ -57,8 +57,8 @@ class TooltipManager { // Returns the separator for lines of text in a tooltip. static const std::wstring& GetLineSeparator(); - // Creates a TooltipManager for the specified Container and parent window. - TooltipManager(Container* container, HWND parent); + // Creates a TooltipManager for the specified Widget and parent window. + TooltipManager(Widget* widget, HWND parent); virtual ~TooltipManager(); // Notification that the view hierarchy has changed in some way. @@ -123,8 +123,8 @@ class TooltipManager { // Invoked when the timer elapses and tooltip has to be destroyed. void DestroyKeyboardTooltipWindow(HWND window_to_destroy); - // Hosting view container. - Container* container_; + // Hosting Widget. + Widget* widget_; // The View the mouse is under. This is null if the mouse isn't under a // View. |