| 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 EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "content/shell/browser/shell_url_request_context_getter.h" | 10 #include "content/shell/browser/shell_url_request_context_getter.h" |
| 11 | 11 |
| 12 namespace base { | |
| 13 class MessageLoop; | |
| 14 } | |
| 15 | |
| 16 namespace content { | 12 namespace content { |
| 17 class BrowserContext; | 13 class BrowserContext; |
| 18 } | 14 } |
| 19 | 15 |
| 20 namespace net { | 16 namespace net { |
| 21 class NetworkDelegate; | 17 class NetworkDelegate; |
| 22 class NetLog; | 18 class NetLog; |
| 23 } | 19 } |
| 24 | 20 |
| 25 namespace extensions { | 21 namespace extensions { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 50 content::BrowserContext* browser_context_; | 46 content::BrowserContext* browser_context_; |
| 51 InfoMap* extension_info_map_; | 47 InfoMap* extension_info_map_; |
| 52 | 48 |
| 53 private: | 49 private: |
| 54 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 50 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
| 55 }; | 51 }; |
| 56 | 52 |
| 57 } // namespace extensions | 53 } // namespace extensions |
| 58 | 54 |
| 59 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 55 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| OLD | NEW |