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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing bengr comments Created 6 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h b/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
index 713cf3f8cb56e46703bf3452405b8143ad93540b..b5f5fbdffdb9ccc6768ceb92fbf4e7f218b2ca17 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
@@ -29,6 +29,20 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
unsigned int has_definitions);
bool init_result() const;
+ bool IsDataReductionProxy(
bengr 2014/12/31 01:10:21 Add: // Overrides from net::DataReductionProxyPara
megjablon 2014/12/31 02:12:29 Done.
+ const net::HostPortPair& host_port_pair,
+ DataReductionProxyTypeInfo* proxy_info) const override;
+ bool IsBypassedByDataReductionProxyLocalRules(
+ const net::URLRequest& request,
+ const net::ProxyConfig& data_reduction_proxy_config) const override;
+ bool AreDataReductionProxiesBypassed(
+ const net::URLRequest& request,
+ base::TimeDelta* min_retry_delay) const override;
+
+ void MockIsDataReductionProxy(bool return_value);
bengr 2014/12/31 01:10:21 Add a comment (a single one will do) for these moc
megjablon 2014/12/31 02:12:29 Done.
+ void MockIsBypassedByDataReductionProxyLocalRules(bool return_value);
+ void MockAreDataReductionProxiesBypassed(bool return_value);
+
// Test values to replace the values specified in preprocessor defines.
static std::string DefaultDevOrigin();
static std::string DefaultDevFallbackOrigin();
@@ -72,6 +86,13 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
unsigned int has_definitions_;
bool init_result_;
+
+ bool mock_is_data_reduction_proxy_;
+ bool mock_is_bypassed_by_data_reduction_proxy_local_rules_;
+ bool mock_are_data_reduction_proxies_bypassed_;
+ bool is_data_reduction_proxy_return_value_;
+ bool is_bypassed_by_data_reduction_proxy_local_rules_return_value_;
+ bool are_data_reduction_proxies_bypassed_return_value_;
};
} // namespace data_reduction_proxy
#endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PARAMS_TEST_UTILS_H_

Powered by Google App Engine
This is Rietveld 408576698