| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ | 5 #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ |
| 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ | 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "components/prefs/pref_store.h" | 11 #include "base/prefs/pref_store.h" |
| 12 #include "ios/chrome/browser/browser_state/chrome_browser_state_io_data.h" | 12 #include "ios/chrome/browser/browser_state/chrome_browser_state_io_data.h" |
| 13 #include "ios/chrome/browser/net/net_types.h" | 13 #include "ios/chrome/browser/net/net_types.h" |
| 14 | 14 |
| 15 class JsonPrefStore; | 15 class JsonPrefStore; |
| 16 | 16 |
| 17 namespace data_reduction_proxy { | 17 namespace data_reduction_proxy { |
| 18 class DataReductionProxyNetworkDelegate; | 18 class DataReductionProxyNetworkDelegate; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace ios { | 21 namespace ios { |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 mutable scoped_ptr<net::SdchOwner> sdch_policy_; | 152 mutable scoped_ptr<net::SdchOwner> sdch_policy_; |
| 153 | 153 |
| 154 // Parameters needed for isolated apps. | 154 // Parameters needed for isolated apps. |
| 155 base::FilePath profile_path_; | 155 base::FilePath profile_path_; |
| 156 int app_cache_max_size_; | 156 int app_cache_max_size_; |
| 157 | 157 |
| 158 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateImplIOData); | 158 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateImplIOData); |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ | 161 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_IO_DATA_H_ |
| OLD | NEW |