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

Side by Side Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TEST_U TILS_H_ 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TEST_U TILS_H_
6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TEST_U TILS_H_ 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TEST_U TILS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "components/data_reduction_proxy/core/browser/data_store.h" 28 #include "components/data_reduction_proxy/core/browser/data_store.h"
29 #include "net/base/backoff_entry.h" 29 #include "net/base/backoff_entry.h"
30 #include "net/log/test_net_log.h" 30 #include "net/log/test_net_log.h"
31 #include "net/proxy/proxy_server.h" 31 #include "net/proxy/proxy_server.h"
32 #include "net/url_request/url_request_context_getter.h" 32 #include "net/url_request/url_request_context_getter.h"
33 #include "testing/gmock/include/gmock/gmock.h" 33 #include "testing/gmock/include/gmock/gmock.h"
34 34
35 class GURL; 35 class GURL;
36 class TestingPrefServiceSimple; 36 class TestingPrefServiceSimple;
37 37
38 namespace base {
39 class MessageLoopForUI;
40 }
41
42 namespace net { 38 namespace net {
43 class MockClientSocketFactory; 39 class MockClientSocketFactory;
44 class NetLog; 40 class NetLog;
45 class URLRequestContext; 41 class URLRequestContext;
46 class URLRequestContextStorage; 42 class URLRequestContextStorage;
47 } 43 }
48 44
49 namespace data_reduction_proxy { 45 namespace data_reduction_proxy {
50 46
51 class ClientConfig; 47 class ClientConfig;
52 class DataReductionProxyConfigurator; 48 class DataReductionProxyConfigurator;
53 class DataReductionProxyEventCreator; 49 class DataReductionProxyEventCreator;
54 class DataReductionProxyMutableConfigValues; 50 class DataReductionProxyMutableConfigValues;
55 class DataReductionProxyRequestOptions; 51 class DataReductionProxyRequestOptions;
56 class DataReductionProxySettings; 52 class DataReductionProxySettings;
57 class DataReductionProxyCompressionStats;
58 class MockDataReductionProxyConfig; 53 class MockDataReductionProxyConfig;
59 class TestDataReductionProxyConfig; 54 class TestDataReductionProxyConfig;
60 class TestDataReductionProxyEventStorageDelegate; 55 class TestDataReductionProxyEventStorageDelegate;
61 class TestDataReductionProxyParams; 56 class TestDataReductionProxyParams;
62 57
63 // Test version of |DataReductionProxyRequestOptions|. 58 // Test version of |DataReductionProxyRequestOptions|.
64 class TestDataReductionProxyRequestOptions 59 class TestDataReductionProxyRequestOptions
65 : public DataReductionProxyRequestOptions { 60 : public DataReductionProxyRequestOptions {
66 public: 61 public:
67 TestDataReductionProxyRequestOptions(Client client, 62 TestDataReductionProxyRequestOptions(Client client,
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 std::unique_ptr<TestConfigStorer> config_storer_; 508 std::unique_ptr<TestConfigStorer> config_storer_;
514 509
515 TestDataReductionProxyParams* params_; 510 TestDataReductionProxyParams* params_;
516 511
517 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyTestContext); 512 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyTestContext);
518 }; 513 };
519 514
520 } // namespace data_reduction_proxy 515 } // namespace data_reduction_proxy
521 516
522 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TES T_UTILS_H_ 517 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_TES T_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698