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