Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / net / spdyproxy / data_reduction_proxy_settings_ios.h
blobbe5bf42141e8f0016b2fb510bc2f270ae7dd7d78
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.
5 #ifndef CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_
6 #define CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_
8 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings.h"
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 : DataReductionProxySettings {
14 public:
15 DataReductionProxySettingsIOS();
16 virtual ~DataReductionProxySettingsIOS() {}
18 private:
19 DISALLOW_COPY_AND_ASSIGN(DataReductionProxySettingsIOS);
22 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_