| Index: athena/content/web_activity.cc
|
| diff --git a/athena/content/web_activity.cc b/athena/content/web_activity.cc
|
| index fa7b6da24114278939c96cc0898e75c4d60b4c7a..97020f6c57334ee4dfd6fa33cab75b0a915bd73c 100644
|
| --- a/athena/content/web_activity.cc
|
| +++ b/athena/content/web_activity.cc
|
| @@ -5,7 +5,6 @@
|
| #include "athena/content/web_activity.h"
|
|
|
| #include "athena/activity/public/activity_manager.h"
|
| -#include "base/strings/utf_string_conversions.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "ui/views/controls/webview/webview.h"
|
|
|
| @@ -28,8 +27,8 @@ SkColor WebActivity::GetRepresentativeColor() {
|
| return SK_ColorGRAY;
|
| }
|
|
|
| -std::string WebActivity::GetTitle() {
|
| - return base::UTF16ToUTF8(web_view_->GetWebContents()->GetTitle());
|
| +base::string16 WebActivity::GetTitle() {
|
| + return web_view_->GetWebContents()->GetTitle();
|
| }
|
|
|
| views::View* WebActivity::GetContentsView() {
|
|
|