| Index: components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.cc
|
| diff --git a/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.cc b/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.cc
|
| index 5bd5fa9f606247be8898e76800bc0cc0b44ae45d..79c4b85c8cd8a3e150dee87efb60c004bc0c1194 100644
|
| --- a/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.cc
|
| +++ b/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.cc
|
| @@ -320,14 +320,8 @@ ContentSuggestion ForeignSessionsSuggestionsProvider::BuildSuggestion(
|
| data.navigation->virtual_url());
|
| suggestion.set_title(data.navigation->title());
|
| suggestion.set_publish_date(data.tab->timestamp);
|
| - // TODO(skym): It's unclear if this simple approach is sufficient for
|
| - // right-to-left languages.
|
| - // This field is sandwiched between the url's favicon, which is on the left,
|
| - // and the |publish_date|, which is to the right. The domain should always
|
| - // appear next to the favicon.
|
| suggestion.set_publisher_name(
|
| - base::UTF8ToUTF16(data.navigation->virtual_url().host() + " - " +
|
| - data.session->session_name));
|
| + base::UTF8ToUTF16(data.navigation->virtual_url().host()));
|
| return suggestion;
|
| }
|
|
|
|
|