OLD | NEW |
1 // Copyright 2014 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_WEB_PUBLIC_BROWSER_STATE_H_ | 5 #ifndef IOS_WEB_PUBLIC_BROWSER_STATE_H_ |
6 #define IOS_WEB_PUBLIC_BROWSER_STATE_H_ | 6 #define IOS_WEB_PUBLIC_BROWSER_STATE_H_ |
7 | 7 |
8 #include "base/supports_user_data.h" | 8 #include "base/supports_user_data.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 class URLRequestContextGetter; | 11 class URLRequestContextGetter; |
(...skipping 15 matching lines...) Expand all Loading... |
27 // BrowserState. | 27 // BrowserState. |
28 virtual net::URLRequestContextGetter* GetRequestContext() = 0; | 28 virtual net::URLRequestContextGetter* GetRequestContext() = 0; |
29 | 29 |
30 protected: | 30 protected: |
31 BrowserState(); | 31 BrowserState(); |
32 }; | 32 }; |
33 | 33 |
34 } // namespace web | 34 } // namespace web |
35 | 35 |
36 #endif // IOS_WEB_PUBLIC_BROWSER_STATE_H_ | 36 #endif // IOS_WEB_PUBLIC_BROWSER_STATE_H_ |
OLD | NEW |