summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/status_bubble.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 00:26:30 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 00:26:30 +0000
commit4d0bd1045bc0df8daea2a5626e73906cb074631b (patch)
tree6794b895e236b68c2f7de1163dfb1c554646364c /chrome/browser/views/status_bubble.h
parent7609533b68dcbeaa80bf712dd84726d1da8d3f8a (diff)
downloadchromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.zip
chromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.tar.gz
chromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.tar.bz2
Rename ViewContainer to Container and HWNDViewContainer to ContainerWin.
http://crbug.com/3430 Review URL: http://codereview.chromium.org/7376 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3441 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/status_bubble.h')
-rw-r--r--chrome/browser/views/status_bubble.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/views/status_bubble.h b/chrome/browser/views/status_bubble.h
index c6083f1..28d189c 100644
--- a/chrome/browser/views/status_bubble.h
+++ b/chrome/browser/views/status_bubble.h
@@ -6,8 +6,8 @@
#define CHROME_BROWSER_VIEWS_STATUS_BUBBLE_H__
#include "base/gfx/rect.h"
-#include "chrome/views/hwnd_view_container.h"
-#include "chrome/views/view_container.h"
+#include "chrome/views/container.h"
+#include "chrome/views/container_win.h"
class GURL;
@@ -16,7 +16,7 @@ class GURL;
// to allow users to see where hovered links point to.
class StatusBubble {
public:
- explicit StatusBubble(ChromeViews::ViewContainer* frame);
+ explicit StatusBubble(ChromeViews::Container* frame);
~StatusBubble();
// Sets the bubble contents to a specific string and causes the bubble
@@ -74,10 +74,10 @@ class StatusBubble {
// We use a HWND for the popup so that it may float above any HWNDs in our
// UI (the location bar, for example).
- ChromeViews::HWNDViewContainer* popup_;
+ ChromeViews::ContainerWin* popup_;
double opacity_;
- ChromeViews::ViewContainer* frame_;
+ ChromeViews::Container* frame_;
StatusView* view_;
DISALLOW_EVIL_CONSTRUCTORS(StatusBubble);