| 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_H_ | 5 #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_H_ |
| 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_H_ | 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
| 15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_vector.h" | |
| 17 #include "ios/chrome/browser/net/net_types.h" | 16 #include "ios/chrome/browser/net/net_types.h" |
| 18 #include "ios/web/public/browser_state.h" | 17 #include "ios/web/public/browser_state.h" |
| 19 #include "net/url_request/url_request_job_factory.h" | 18 #include "net/url_request/url_request_job_factory.h" |
| 20 | 19 |
| 21 class ChromeBrowserStateIOData; | 20 class ChromeBrowserStateIOData; |
| 22 class PrefProxyConfigTracker; | 21 class PrefProxyConfigTracker; |
| 23 class PrefService; | 22 class PrefService; |
| 24 class TestChromeBrowserState; | 23 class TestChromeBrowserState; |
| 25 class TestChromeBrowserStateManager; | 24 class TestChromeBrowserStateManager; |
| 26 | 25 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 friend class ::TestChromeBrowserStateManager; | 138 friend class ::TestChromeBrowserStateManager; |
| 140 | 139 |
| 141 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; | 140 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; |
| 142 | 141 |
| 143 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserState); | 142 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserState); |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 } // namespace ios | 145 } // namespace ios |
| 147 | 146 |
| 148 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_H_ | 147 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_H_ |
| OLD | NEW |