OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/hpack/hpack_static_table.h" | 5 #include "net/spdy/hpack/hpack_static_table.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "net/base/net_export.h" | |
11 #include "net/spdy/hpack/hpack_constants.h" | 10 #include "net/spdy/hpack/hpack_constants.h" |
12 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
13 | 12 |
14 namespace net { | 13 namespace net { |
15 | 14 |
16 namespace test { | 15 namespace test { |
17 | 16 |
18 namespace { | 17 namespace { |
19 | 18 |
20 class HpackStaticTableTest : public ::testing::Test { | 19 class HpackStaticTableTest : public ::testing::Test { |
(...skipping 30 matching lines...) Expand all Loading... |
51 const HpackStaticTable* static_table_one = &ObtainHpackStaticTable(); | 50 const HpackStaticTable* static_table_one = &ObtainHpackStaticTable(); |
52 const HpackStaticTable* static_table_two = &ObtainHpackStaticTable(); | 51 const HpackStaticTable* static_table_two = &ObtainHpackStaticTable(); |
53 EXPECT_EQ(static_table_one, static_table_two); | 52 EXPECT_EQ(static_table_one, static_table_two); |
54 } | 53 } |
55 | 54 |
56 } // namespace | 55 } // namespace |
57 | 56 |
58 } // namespace test | 57 } // namespace test |
59 | 58 |
60 } // namespace net | 59 } // namespace net |
OLD | NEW |