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

Unified Diff: remoting/codec/video_encoder_verbatim.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
« no previous file with comments | « remoting/codec/audio_encoder_opus.cc ('k') | remoting/host/it2me/it2me_native_messaging_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_verbatim.cc
diff --git a/remoting/codec/video_encoder_verbatim.cc b/remoting/codec/video_encoder_verbatim.cc
index 27221e03ce9e4a0ec4c7e693e12c2afbf9842008..6e01304e3a2ea3ed532ef123df57a989f823dbe2 100644
--- a/remoting/codec/video_encoder_verbatim.cc
+++ b/remoting/codec/video_encoder_verbatim.cc
@@ -19,7 +19,8 @@ namespace remoting {
static uint8_t* GetPacketOutputBuffer(VideoPacket* packet, size_t size) {
packet->mutable_data()->resize(size);
- return reinterpret_cast<uint8_t*>(string_as_array(packet->mutable_data()));
+ return reinterpret_cast<uint8_t*>(
+ base::string_as_array(packet->mutable_data()));
}
VideoEncoderVerbatim::VideoEncoderVerbatim() {}
« no previous file with comments | « remoting/codec/audio_encoder_opus.cc ('k') | remoting/host/it2me/it2me_native_messaging_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698