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 <iostream> | 5 #include <iostream> |
6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
10 #include "base/time.h" | 10 #include "base/time/time.h" |
11 #include "chrome/browser/history/history_service.h" | 11 #include "chrome/browser/history/history_service.h" |
12 #include "chrome/browser/history/history_service_factory.h" | 12 #include "chrome/browser/history/history_service_factory.h" |
13 #include "chrome/browser/history/history_types.h" | 13 #include "chrome/browser/history/history_types.h" |
14 #include "chrome/browser/history/in_memory_database.h" | 14 #include "chrome/browser/history/in_memory_database.h" |
15 #include "chrome/browser/history/url_database.h" | 15 #include "chrome/browser/history/url_database.h" |
16 #include "chrome/browser/predictors/resource_prefetch_predictor.h" | 16 #include "chrome/browser/predictors/resource_prefetch_predictor.h" |
17 #include "chrome/browser/predictors/resource_prefetch_predictor_tables.h" | 17 #include "chrome/browser/predictors/resource_prefetch_predictor_tables.h" |
18 #include "chrome/test/base/testing_profile.h" | 18 #include "chrome/test/base/testing_profile.h" |
19 #include "content/public/test/test_browser_thread.h" | 19 #include "content/public/test/test_browser_thread.h" |
20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(0))); | 917 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(0))); |
918 EXPECT_TRUE(URLRequestSummaryAreEqual( | 918 EXPECT_TRUE(URLRequestSummaryAreEqual( |
919 resource2, | 919 resource2, |
920 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(1))); | 920 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(1))); |
921 EXPECT_TRUE(URLRequestSummaryAreEqual( | 921 EXPECT_TRUE(URLRequestSummaryAreEqual( |
922 resource3, | 922 resource3, |
923 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(2))); | 923 predictor_->inflight_navigations_[main_frame1.navigation_id]->at(2))); |
924 } | 924 } |
925 | 925 |
926 } // namespace predictors | 926 } // namespace predictors |
OLD | NEW |