| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/data_reduction_proxy/core/browser/data_reduction_proxy_inte
rceptor.h" | 5 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_inte
rceptor.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
| 14 #include "base/prefs/pref_service.h" | 15 #include "base/prefs/pref_service.h" |
| 15 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
| 16 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf
ig_test_utils.h" | 17 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf
ig_test_utils.h" |
| 17 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf
igurator.h" | 18 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf
igurator.h" |
| 18 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" | 19 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" |
| 19 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_test
_utils.h" | 20 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_test
_utils.h" |
| 20 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_param
s.h" | 21 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_param
s.h" |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 std::vector<GURL> expected_url_chain; | 511 std::vector<GURL> expected_url_chain; |
| 511 expected_url_chain.push_back(GURL("http://music.google.com")); | 512 expected_url_chain.push_back(GURL("http://music.google.com")); |
| 512 expected_url_chain.push_back(GURL("http://play.google.com")); | 513 expected_url_chain.push_back(GURL("http://play.google.com")); |
| 513 expected_url_chain.push_back(GURL("https://play.google.com")); | 514 expected_url_chain.push_back(GURL("https://play.google.com")); |
| 514 EXPECT_EQ(expected_url_chain, request->url_chain()); | 515 EXPECT_EQ(expected_url_chain, request->url_chain()); |
| 515 } | 516 } |
| 516 | 517 |
| 517 } // namespace | 518 } // namespace |
| 518 | 519 |
| 519 } // namespace data_reduction_proxy | 520 } // namespace data_reduction_proxy |
| OLD | NEW |