Index: components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h |
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h b/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h |
index df804bfe0428a4d54800347221f7ac05c2e83e33..e2a101330386817dc83d5bd30466cc4f39054aa5 100644 |
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h |
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h |
@@ -21,6 +21,7 @@ class TestDataReductionProxyParams : public DataReductionProxyParams { |
HAS_ALT_ORIGIN = 0x10, |
HAS_ALT_FALLBACK_ORIGIN = 0x20, |
HAS_PROBE_URL = 0x40, |
+ HAS_DEV_FALLBACK_ORIGIN = 0x80, |
HAS_EVERYTHING = 0xff, |
}; |
@@ -30,6 +31,7 @@ class TestDataReductionProxyParams : public DataReductionProxyParams { |
// Test values to replace the values specified in preprocessor defines. |
static std::string DefaultDevOrigin(); |
+ static std::string DefaultDevFallbackOrigin(); |
static std::string DefaultOrigin(); |
static std::string DefaultFallbackOrigin(); |
static std::string DefaultSSLOrigin(); |
@@ -46,6 +48,7 @@ class TestDataReductionProxyParams : public DataReductionProxyParams { |
protected: |
virtual std::string GetDefaultDevOrigin() const OVERRIDE; |
+ virtual std::string GetDefaultDevFallbackOrigin() const OVERRIDE; |
bengr
2014/09/09 19:17:56
Add a blank line above
bolian
2014/09/09 20:32:51
Done.
|
virtual std::string GetDefaultOrigin() const OVERRIDE; |