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" |
(...skipping 23 matching lines...) Expand all Loading... | |
34 bool ignore_certificate_errors, | 34 bool ignore_certificate_errors, |
35 const base::FilePath& base_path, | 35 const base::FilePath& base_path, |
36 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, | 36 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, |
37 scoped_refptr<base::SingleThreadTaskRunner> file_task_runner, | 37 scoped_refptr<base::SingleThreadTaskRunner> file_task_runner, |
38 content::ProtocolHandlerMap* protocol_handlers, | 38 content::ProtocolHandlerMap* protocol_handlers, |
39 content::URLRequestInterceptorScopedVector request_interceptors, | 39 content::URLRequestInterceptorScopedVector request_interceptors, |
40 net::NetLog* net_log, | 40 net::NetLog* net_log, |
41 InfoMap* extension_info_map); | 41 InfoMap* extension_info_map); |
42 | 42 |
43 // content::ShellURLRequestContextGetter implementation. | 43 // content::ShellURLRequestContextGetter implementation. |
44 scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate() override; | 44 std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate() override; |
dcheng
2016/04/09 06:12:47
I opted to change this to use std::unique_ptr: thi
dcheng
2016/04/09 06:13:50
"this header" == scoped_ptr.h. To clarify, this is
Avi (use Gerrit)
2016/04/09 15:46:19
Fine.
| |
45 | 45 |
46 protected: | 46 protected: |
47 ~ShellURLRequestContextGetter() override; | 47 ~ShellURLRequestContextGetter() override; |
48 | 48 |
49 private: | 49 private: |
50 content::BrowserContext* browser_context_; | 50 content::BrowserContext* browser_context_; |
51 InfoMap* extension_info_map_; | 51 InfoMap* extension_info_map_; |
52 | 52 |
53 private: | 53 private: |
Avi (use Gerrit)
2016/04/09 15:46:19
fix indent while you're in here fixing indents?
dcheng
2016/04/09 17:30:07
Done (though it's not me, it's clang-format!)
| |
54 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 54 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
55 }; | 55 }; |
56 | 56 |
57 } // namespace extensions | 57 } // namespace extensions |
58 | 58 |
59 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 59 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
OLD | NEW |