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

Side by Side Diff: net/spdy/core/spdy_alt_svc_wire_format_test.cc

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « net/spdy/core/spdy_alt_svc_wire_format.cc ('k') | net/spdy/core/spdy_bitmasks.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/spdy/spdy_alt_svc_wire_format.h" 5 #include "net/spdy/core/spdy_alt_svc_wire_format.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/platform_test.h" 9 #include "testing/platform_test.h"
10 10
11 using ::testing::_; 11 using ::testing::_;
12 12
13 namespace net { 13 namespace net {
14 14
15 namespace test { 15 namespace test {
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 EXPECT_EQ("quic", altsvc_vector[0].protocol_id); 544 EXPECT_EQ("quic", altsvc_vector[0].protocol_id);
545 EXPECT_EQ("[2003:8:0:16::509d:9615]", altsvc_vector[0].host); 545 EXPECT_EQ("[2003:8:0:16::509d:9615]", altsvc_vector[0].host);
546 EXPECT_EQ(443u, altsvc_vector[0].port); 546 EXPECT_EQ(443u, altsvc_vector[0].port);
547 EXPECT_EQ(60u, altsvc_vector[0].max_age); 547 EXPECT_EQ(60u, altsvc_vector[0].max_age);
548 EXPECT_THAT(altsvc_vector[0].version, ::testing::ElementsAre(36, 35)); 548 EXPECT_THAT(altsvc_vector[0].version, ::testing::ElementsAre(36, 35));
549 } 549 }
550 550
551 } // namespace 551 } // namespace
552 552
553 } // namespace net 553 } // namespace net
OLDNEW
« no previous file with comments | « net/spdy/core/spdy_alt_svc_wire_format.cc ('k') | net/spdy/core/spdy_bitmasks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698