diff options
Diffstat (limited to 'remoting/host/disconnect_window_win.cc')
-rw-r--r-- | remoting/host/disconnect_window_win.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/host/disconnect_window_win.cc b/remoting/host/disconnect_window_win.cc index 7617b09..c0a7ecc 100644 --- a/remoting/host/disconnect_window_win.cc +++ b/remoting/host/disconnect_window_win.cc @@ -316,9 +316,9 @@ bool DisconnectWindowWin::SetStrings() { } // Format and truncate "Your desktop is shared with ..." message. - message_text = ReplaceStringPlaceholders(message_text, - base::UTF8ToUTF16(username_), - nullptr); + message_text = base::ReplaceStringPlaceholders(message_text, + base::UTF8ToUTF16(username_), + nullptr); if (message_text.length() > kMaxSharingWithTextLength) message_text.erase(kMaxSharingWithTextLength); |