| 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;
|
|
|