| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_ | |
| 6 #define CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_ | |
| 7 | |
| 8 #include "components/data_reduction_proxy/content/data_reduction_proxy_settings.
h" | |
| 9 | |
| 10 // Central point for configuring the data reduction proxy on iOS. | |
| 11 // This object lives on the UI thread and all of its methods are expected to | |
| 12 // be called from there. | |
| 13 class DataReductionProxySettingsIOS | |
| 14 : data_reduction_proxy::DataReductionProxySettings { | |
| 15 public: | |
| 16 DataReductionProxySettingsIOS(); | |
| 17 virtual ~DataReductionProxySettingsIOS() {} | |
| 18 | |
| 19 private: | |
| 20 DISALLOW_COPY_AND_ASSIGN(DataReductionProxySettingsIOS); | |
| 21 }; | |
| 22 | |
| 23 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_ | |
| OLD | NEW |