Adding instrumentation to locate the source of jankiness
[chromium-blink-merge.git] / chrome / browser / net / spdyproxy / data_reduction_proxy_settings_ios.h
blob1a8a914bcef40e3e50599ef068d63ff16c7f083e
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 "components/data_reduction_proxy/content/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
14 : data_reduction_proxy::DataReductionProxySettings {
15 public:
16 DataReductionProxySettingsIOS();
17 virtual ~DataReductionProxySettingsIOS() {}
19 private:
20 DISALLOW_COPY_AND_ASSIGN(DataReductionProxySettingsIOS);
23 #endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_SETTINGS_IOS_H_