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

Unified Diff: chrome/browser/history/visit_tracker_unittest.cc

Issue 274040: More style nits. (Closed)
Patch Set: Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/visit_tracker_unittest.cc
diff --git a/chrome/browser/history/visit_tracker_unittest.cc b/chrome/browser/history/visit_tracker_unittest.cc
index 8676fbe71aacc531924090becfae71f5e104d6d7..5c84d28521b072b5248cc8fc425cde39cba3b819 100644
--- a/chrome/browser/history/visit_tracker_unittest.cc
+++ b/chrome/browser/history/visit_tracker_unittest.cc
@@ -76,17 +76,17 @@ TEST(VisitTracker, SimpleTransitions) {
TEST(VisitTracker, Frames) {
VisitToTest test_frames[] = {
// Started here:
- {1, 1, "http://foo.com/", 1, "", 0},
+ {1, 1, "http://foo.com/", 1, "", 0},
// Which had an auto-loaded subframe:
- {1, 1, "http://foo.com/ad.html", 2, "http://foo.com/", 1},
+ {1, 1, "http://foo.com/ad.html", 2, "http://foo.com/", 1},
// ...and another auto-loaded subframe:
- {1, 1, "http://foo.com/ad2.html", 3, "http://foo.com/", 1},
+ {1, 1, "http://foo.com/ad2.html", 3, "http://foo.com/", 1},
// ...and the user navigated the first subframe to somwhere else
- {1, 2, "http://bar.com/", 4, "http://foo.com/ad.html", 2},
+ {1, 2, "http://bar.com/", 4, "http://foo.com/ad.html", 2},
// ...and then the second subframe somewhere else
- {1, 3, "http://fud.com/", 5, "http://foo.com/ad2.html",3},
+ {1, 3, "http://fud.com/", 5, "http://foo.com/ad2.html", 3},
// ...and then the main frame somewhere else.
- {1, 4, "http://www.google.com/", 6, "http://foo.com/", 1},
+ {1, 4, "http://www.google.com/", 6, "http://foo.com/", 1},
};
VisitTracker tracker;

Powered by Google App Engine
This is Rietveld 408576698