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

Unified Diff: remoting/protocol/message_reader_unittest.cc

Issue 435823002: Revert "Update webrtc&libjingle 6774:6799." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/protocol/message_decoder.cc ('k') | remoting/protocol/message_serialization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/message_reader_unittest.cc
diff --git a/remoting/protocol/message_reader_unittest.cc b/remoting/protocol/message_reader_unittest.cc
index 1ea24124d69a66e66ea13fe7a9264c7129f18185..497e7a550bf9ce6729cf9f09ee84107d5b5dbcf4 100644
--- a/remoting/protocol/message_reader_unittest.cc
+++ b/remoting/protocol/message_reader_unittest.cc
@@ -17,7 +17,7 @@
#include "remoting/protocol/message_reader.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/webrtc/base/byteorder.h"
+#include "third_party/libjingle/source/talk/base/byteorder.h"
using testing::_;
using testing::DoAll;
@@ -82,7 +82,7 @@ class MessageReaderTest : public testing::Test {
void AddMessage(const std::string& message) {
std::string data = std::string(4, ' ') + message;
- rtc::SetBE32(const_cast<char*>(data.data()), message.size());
+ talk_base::SetBE32(const_cast<char*>(data.data()), message.size());
socket_.AppendInputData(std::vector<char>(data.begin(), data.end()));
}
« no previous file with comments | « remoting/protocol/message_decoder.cc ('k') | remoting/protocol/message_serialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698