- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / net / spdyproxy / data_reduction_proxy_settings_ios.h
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 "chrome/browser/net/spdyproxy/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 : DataReductionProxySettings {
14  public:
15   DataReductionProxySettingsIOS();
16   virtual ~DataReductionProxySettingsIOS() {}
17
18  private:
19   DISALLOW_COPY_AND_ASSIGN(DataReductionProxySettingsIOS);
20 };
21
22 #endif  // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_