| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "net/cookies/cookie_constants.h" | 7 #include "net/cookies/cookie_constants.h" |
| 8 #include "net/cookies/parsed_cookie.h" | 8 #include "net/cookies/parsed_cookie.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 EXPECT_EQ(pc4_literal, pc4.ToCookieLine()); | 604 EXPECT_EQ(pc4_literal, pc4.ToCookieLine()); |
| 605 EXPECT_TRUE(pc5.IsValid()); | 605 EXPECT_TRUE(pc5.IsValid()); |
| 606 EXPECT_EQ(pc5_literal, pc5.ToCookieLine()); | 606 EXPECT_EQ(pc5_literal, pc5.ToCookieLine()); |
| 607 EXPECT_TRUE(pc6.IsValid()); | 607 EXPECT_TRUE(pc6.IsValid()); |
| 608 EXPECT_EQ(pc6_literal, pc6.ToCookieLine()); | 608 EXPECT_EQ(pc6_literal, pc6.ToCookieLine()); |
| 609 EXPECT_TRUE(pc7.IsValid()); | 609 EXPECT_TRUE(pc7.IsValid()); |
| 610 EXPECT_EQ(pc7_literal, pc7.ToCookieLine()); | 610 EXPECT_EQ(pc7_literal, pc7.ToCookieLine()); |
| 611 EXPECT_TRUE(pc8.IsValid()); | 611 EXPECT_TRUE(pc8.IsValid()); |
| 612 EXPECT_EQ(pc8_literal, pc8.ToCookieLine()); | 612 EXPECT_EQ(pc8_literal, pc8.ToCookieLine()); |
| 613 } | 613 } |
| 614 } | 614 |
| 615 } // namespace net |
| OLD | NEW |