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

Side by Side Diff: net/cookies/parsed_cookie_unittest.cc

Issue 2901103002: Fix closing namespace comments in //net. (Closed)
Patch Set: Rebase. Created 3 years, 7 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/cookies/parsed_cookie.cc ('k') | net/disk_cache/blockfile/in_flight_backend_io.cc » ('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) 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
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
OLDNEW
« no previous file with comments | « net/cookies/parsed_cookie.cc ('k') | net/disk_cache/blockfile/in_flight_backend_io.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698