| 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 "base/single_thread_task_runner.h" |
| 10 #include "content/shell/browser/shell_url_request_context_getter.h" | 11 #include "content/shell/browser/shell_url_request_context_getter.h" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 class BrowserContext; | 14 class BrowserContext; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace net { | 17 namespace net { |
| 17 class NetworkDelegate; | 18 class NetworkDelegate; |
| 18 class NetLog; | 19 class NetLog; |
| 19 } | 20 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 46 content::BrowserContext* browser_context_; | 47 content::BrowserContext* browser_context_; |
| 47 InfoMap* extension_info_map_; | 48 InfoMap* extension_info_map_; |
| 48 | 49 |
| 49 private: | 50 private: |
| 50 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 51 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
| 51 }; | 52 }; |
| 52 | 53 |
| 53 } // namespace extensions | 54 } // namespace extensions |
| 54 | 55 |
| 55 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 56 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| OLD | NEW |