summaryrefslogtreecommitdiffstats
path: root/views/examples/examples_main.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 01:11:41 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 01:11:41 +0000
commitf519c9482e9f8fc288162bf2775ad4cdb717695a (patch)
tree69d210b7c8224d587992939787311aaac272dfb7 /views/examples/examples_main.cc
parent769c7aa11e79e08bd367f6d8b97b09314ed55263 (diff)
downloadchromium_src-f519c9482e9f8fc288162bf2775ad4cdb717695a.zip
chromium_src-f519c9482e9f8fc288162bf2775ad4cdb717695a.tar.gz
chromium_src-f519c9482e9f8fc288162bf2775ad4cdb717695a.tar.bz2
views: Change TabbedPane::AddTab() to string16.
BUG=68267 R=sky@chromium.org Review URL: http://codereview.chromium.org/8068009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103218 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/examples/examples_main.cc')
-rw-r--r--views/examples/examples_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/examples/examples_main.cc b/views/examples/examples_main.cc
index 2eda948..4ee0b83 100644
--- a/views/examples/examples_main.cc
+++ b/views/examples/examples_main.cc
@@ -114,7 +114,7 @@ void ExamplesMain::SetStatus(const std::string& status) {
}
void ExamplesMain::AddExample(ExampleBase* example) {
- tabbed_pane_->AddTab(UTF8ToWide(example->example_title()),
+ tabbed_pane_->AddTab(UTF8ToUTF16(example->example_title()),
example->GetExampleView());
}