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

Unified Diff: remoting/protocol/content_description_unittest.cc

Issue 1493083002: Remove QUIC support from remoting host and client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/content_description.cc ('k') | remoting/protocol/fake_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/content_description_unittest.cc
diff --git a/remoting/protocol/content_description_unittest.cc b/remoting/protocol/content_description_unittest.cc
index 0d274b9c3a1ea3bd37cdfa7120463587cbc00aa6..143960db6249f45d33c150dcbe734dd353e418f6 100644
--- a/remoting/protocol/content_description_unittest.cc
+++ b/remoting/protocol/content_description_unittest.cc
@@ -19,8 +19,7 @@ TEST(ContentDescriptionTest, FormatAndParse) {
scoped_ptr<CandidateSessionConfig> config =
CandidateSessionConfig::CreateDefault();
ContentDescription description(
- config.Pass(), Authenticator::CreateEmptyAuthenticatorMessage(),
- "TestQuicConfigMessage");
+ config.Pass(), Authenticator::CreateEmptyAuthenticatorMessage());
scoped_ptr<buzz::XmlElement> xml(description.ToXml());
LOG(ERROR) << xml->Str();
scoped_ptr<ContentDescription> parsed(
@@ -34,8 +33,6 @@ TEST(ContentDescriptionTest, FormatAndParse) {
parsed->config()->event_configs());
EXPECT_TRUE(description.config()->audio_configs() ==
parsed->config()->audio_configs());
- EXPECT_TRUE(description.quic_config_message() ==
- parsed->quic_config_message());
}
// Verify that we can still parse configs with transports that we don't
« no previous file with comments | « remoting/protocol/content_description.cc ('k') | remoting/protocol/fake_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698