| 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 | 5 |
| 6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "chrome/browser/common/url_database/url_database.h" |
| 10 #include "chrome/browser/history/history.h" | 11 #include "chrome/browser/history/history.h" |
| 11 #include "chrome/browser/history/history_service_factory.h" | 12 #include "chrome/browser/history/history_service_factory.h" |
| 12 #include "chrome/browser/history/history_types.h" | 13 #include "chrome/browser/history/history_types.h" |
| 13 #include "chrome/browser/history/in_memory_database.h" | 14 #include "chrome/browser/history/in_memory_database.h" |
| 14 #include "chrome/browser/history/url_database.h" | |
| 15 #include "chrome/browser/predictors/resource_prefetch_predictor.h" | 15 #include "chrome/browser/predictors/resource_prefetch_predictor.h" |
| 16 #include "chrome/browser/predictors/resource_prefetch_predictor_tables.h" | 16 #include "chrome/browser/predictors/resource_prefetch_predictor_tables.h" |
| 17 #include "chrome/test/base/testing_profile.h" | 17 #include "chrome/test/base/testing_profile.h" |
| 18 #include "content/public/test/test_browser_thread.h" | 18 #include "content/public/test/test_browser_thread.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
| 21 | 21 |
| 22 using testing::ContainerEq; | 22 using testing::ContainerEq; |
| 23 using testing::Pointee; | 23 using testing::Pointee; |
| 24 using testing::SetArgPointee; | 24 using testing::SetArgPointee; |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 predictor_->inflight_navigations_[main_frame1.navigation_id][0])); | 593 predictor_->inflight_navigations_[main_frame1.navigation_id][0])); |
| 594 EXPECT_TRUE(URLRequestSummaryAreEqual( | 594 EXPECT_TRUE(URLRequestSummaryAreEqual( |
| 595 resource2, | 595 resource2, |
| 596 predictor_->inflight_navigations_[main_frame1.navigation_id][1])); | 596 predictor_->inflight_navigations_[main_frame1.navigation_id][1])); |
| 597 EXPECT_TRUE(URLRequestSummaryAreEqual( | 597 EXPECT_TRUE(URLRequestSummaryAreEqual( |
| 598 resource3, | 598 resource3, |
| 599 predictor_->inflight_navigations_[main_frame1.navigation_id][2])); | 599 predictor_->inflight_navigations_[main_frame1.navigation_id][2])); |
| 600 } | 600 } |
| 601 | 601 |
| 602 } // namespace predictors | 602 } // namespace predictors |
| OLD | NEW |