Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Unified Diff: remoting/host/setup/me2me_native_messaging_host_unittest.cc

Issue 2230193002: remoting: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/setup/me2me_native_messaging_host_unittest.cc
diff --git a/remoting/host/setup/me2me_native_messaging_host_unittest.cc b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
index 4f577485656c483daa2ad2bfaba09da258eb057e..6a28f4b3a437b81d5abb837d2079b0430b793271 100644
--- a/remoting/host/setup/me2me_native_messaging_host_unittest.cc
+++ b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
@@ -418,7 +418,7 @@ Me2MeNativeMessagingHostTest::ReadMessageFromOutputPipe() {
std::string message_json(length, '\0');
read_result = output_read_file_.ReadAtCurrentPos(
- string_as_array(&message_json), length);
+ base::string_as_array(&message_json), length);
if (read_result != static_cast<int>(length)) {
return nullptr;
}
« no previous file with comments | « remoting/host/security_key/security_key_message_writer_impl_unittest.cc ('k') | remoting/host/touch_injector_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698