| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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_ | 5 #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_H_ |
| 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_ | 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 12 #include "ios/chrome/browser/browser_state/chrome_browser_state_impl_io_data.h" | 12 #include "ios/chrome/browser/browser_state/chrome_browser_state_impl_io_data.h" |
| 13 | 13 |
| 14 namespace ssl_config { | 14 namespace ssl_config { |
| 15 class SSLConfigServiceManager; | 15 class SSLConfigServiceManager; |
| 16 } | 16 } |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // | 98 // |
| 99 // and you can read the raw headers here: | 99 // and you can read the raw headers here: |
| 100 // | 100 // |
| 101 // components/keyed_service/ios/browser_state_dependency_manager.* | 101 // components/keyed_service/ios/browser_state_dependency_manager.* |
| 102 // components/keyed_service/core/keyed_service.h | 102 // components/keyed_service/core/keyed_service.h |
| 103 // components/keyed_service/ios/browser_state_keyed_service_factory.* | 103 // components/keyed_service/ios/browser_state_keyed_service_factory.* |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateImpl); | 105 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateImpl); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_ | 108 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IMPL_H_ |
| OLD | NEW |