summaryrefslogtreecommitdiffstats
path: root/ui/views/controls/image_view.h
diff options
context:
space:
mode:
authordbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 20:03:44 +0000
committerdbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 20:03:44 +0000
commit2aadf21d2ff4882cb94510e4107067a70a928850 (patch)
tree8acbc4f186e6fc73a20292b2baca8efc954d47cb /ui/views/controls/image_view.h
parentdf97969962d83bf8ad962bc3d46b824ebeee4af0 (diff)
downloadchromium_src-2aadf21d2ff4882cb94510e4107067a70a928850.zip
chromium_src-2aadf21d2ff4882cb94510e4107067a70a928850.tar.gz
chromium_src-2aadf21d2ff4882cb94510e4107067a70a928850.tar.bz2
Prefix string16 with base:: in ui/.
R=sky@chromium.org, tsepez@chromium.org BUG=329295 Review URL: https://codereview.chromium.org/117983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241625 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/controls/image_view.h')
-rw-r--r--ui/views/controls/image_view.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/views/controls/image_view.h b/ui/views/controls/image_view.h
index b0f4ce8..620ad86 100644
--- a/ui/views/controls/image_view.h
+++ b/ui/views/controls/image_view.h
@@ -72,8 +72,8 @@ class VIEWS_EXPORT ImageView : public View {
Alignment GetVerticalAlignment() const;
// Set / Get the tooltip text.
- void SetTooltipText(const string16& tooltip);
- string16 GetTooltipText() const;
+ void SetTooltipText(const base::string16& tooltip);
+ base::string16 GetTooltipText() const;
void set_interactive(bool interactive) { interactive_ = interactive; }
@@ -86,7 +86,7 @@ class VIEWS_EXPORT ImageView : public View {
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
virtual bool GetTooltipText(const gfx::Point& p,
- string16* tooltip) const OVERRIDE;
+ base::string16* tooltip) const OVERRIDE;
virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE;
private:
@@ -117,7 +117,7 @@ class VIEWS_EXPORT ImageView : public View {
Alignment vert_alignment_;
// The current tooltip text.
- string16 tooltip_text_;
+ base::string16 tooltip_text_;
// A flag controlling hit test handling for interactivity.
bool interactive_;