summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-04 06:13:02 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-04 06:13:02 +0000
commitcee9de4e4af9a1d441a1540c6c7a676c35042994 (patch)
treeac2034b3195281551dde58be9f4b2c32d8b8f8c0 /chrome/common
parentd01902d70e46a90fc24d3a442805a4a665d373ca (diff)
downloadchromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.zip
chromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.tar.gz
chromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.tar.bz2
Fix the build with some forgotten string conversions on non-Windows.
Review URL: http://codereview.chromium.org/40099 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/temp_scaffolding_stubs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h
index c360c63..20e93d4 100644
--- a/chrome/common/temp_scaffolding_stubs.h
+++ b/chrome/common/temp_scaffolding_stubs.h
@@ -428,7 +428,7 @@ class TabContents : public PageNavigator, public NotificationObserver {
}
virtual SkBitmap GetFavIcon() const;
const GURL& GetURL() const;
- virtual const std::wstring& GetTitle() const;
+ virtual const string16& GetTitle() const;
TabContentsType type() const { return type_; }
void set_type(TabContentsType type) { type_ = type; }
virtual void Focus() { NOTIMPLEMENTED(); }