diff options
author | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 09:38:48 +0000 |
---|---|---|
committer | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 09:38:48 +0000 |
commit | 956b3d317c53390cae307b6cda5790f1fa9cb508 (patch) | |
tree | 3a37d101bd2590c2c00aef2c13416120b3ff92c7 /views/widget/widget_delegate.h | |
parent | 9100e9221c55d10ceba196ef775af06d76b1e0cf (diff) | |
download | chromium_src-956b3d317c53390cae307b6cda5790f1fa9cb508.zip chromium_src-956b3d317c53390cae307b6cda5790f1fa9cb508.tar.gz chromium_src-956b3d317c53390cae307b6cda5790f1fa9cb508.tar.bz2 |
Change std::wstring to string16 on WidgetDelegate::GetWindowTitle
Review URL: http://codereview.chromium.org/8065001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/widget_delegate.h')
-rw-r--r-- | views/widget/widget_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/widget/widget_delegate.h b/views/widget/widget_delegate.h index 6fe77ba..8e56c65 100644 --- a/views/widget/widget_delegate.h +++ b/views/widget/widget_delegate.h @@ -71,10 +71,10 @@ class VIEWS_EXPORT WidgetDelegate { virtual ui::AccessibilityTypes::State GetAccessibleWindowState() const; // Returns the title to be read with screen readers. - virtual std::wstring GetAccessibleWindowTitle() const; + virtual string16 GetAccessibleWindowTitle() const; // Returns the text to be displayed in the window title. - virtual std::wstring GetWindowTitle() const; + virtual string16 GetWindowTitle() const; // Returns true if the window should show a title in the title bar. virtual bool ShouldShowWindowTitle() const; |