Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_ios.h

Issue 785233002: Enable chrome.gyp:browser on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698