| Index: remoting/host/clipboard_win.cc
|
| diff --git a/remoting/host/clipboard_win.cc b/remoting/host/clipboard_win.cc
|
| index 03d6044b433868a7277da8d53598b6503ea73d7a..dfb627013aa483d075802901a10c0a2084133622 100644
|
| --- a/remoting/host/clipboard_win.cc
|
| +++ b/remoting/host/clipboard_win.cc
|
| @@ -195,7 +195,7 @@ void ClipboardWin::InjectClipboardEvent(
|
| return;
|
| }
|
|
|
| - base::string16 text = UTF8ToUTF16(ReplaceLfByCrLf(event.data()));
|
| + base::string16 text = base::UTF8ToUTF16(ReplaceLfByCrLf(event.data()));
|
|
|
| ScopedClipboard clipboard;
|
| if (!clipboard.Init(window_->hwnd())) {
|
| @@ -252,7 +252,7 @@ void ClipboardWin::OnClipboardUpdate() {
|
|
|
| protocol::ClipboardEvent event;
|
| event.set_mime_type(kMimeTypeTextUtf8);
|
| - event.set_data(ReplaceCrLfByLf(UTF16ToUTF8(text)));
|
| + event.set_data(ReplaceCrLfByLf(base::UTF16ToUTF8(text)));
|
|
|
| if (client_clipboard_.get()) {
|
| client_clipboard_->InjectClipboardEvent(event);
|
|
|