| Index: chrome/browser/ui/ash/screenshot_taker.cc
|
| diff --git a/chrome/browser/ui/ash/screenshot_taker.cc b/chrome/browser/ui/ash/screenshot_taker.cc
|
| index d2f46c386c152cb2ade430c56057896b4efca4b9..5ea4276d979f143078460cff6ae20ba83c5fedfa 100644
|
| --- a/chrome/browser/ui/ash/screenshot_taker.cc
|
| +++ b/chrome/browser/ui/ash/screenshot_taker.cc
|
| @@ -82,7 +82,7 @@ void CopyScreenshotToClipboard(scoped_refptr<base::RefCountedString> png_data) {
|
| std::string html(kImageClipboardFormatPrefix);
|
| html += encoded;
|
| html += kImageClipboardFormatSuffix;
|
| - scw.WriteHTML(UTF8ToUTF16(html), std::string());
|
| + scw.WriteHTML(base::UTF8ToUTF16(html), std::string());
|
| }
|
| content::RecordAction(content::UserMetricsAction("Screenshot_CopyClipboard"));
|
| }
|
| @@ -510,7 +510,7 @@ Notification* ScreenshotTaker::CreateNotification(
|
| // We cancel a previous screenshot notification, if any, to ensure we get
|
| // a fresh notification pop-up.
|
| g_browser_process->notification_ui_manager()->CancelById(notification_id);
|
| - const base::string16 replace_id(UTF8ToUTF16(notification_id));
|
| + const base::string16 replace_id(base::UTF8ToUTF16(notification_id));
|
| bool success =
|
| (screenshot_result == ScreenshotTakerObserver::SCREENSHOT_SUCCESS);
|
| message_center::RichNotificationData optional_field;
|
|
|