Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: chrome/service/net/service_url_request_context_getter.h

Issue 1899083002: Convert //chrome from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_ 5 #ifndef CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_
6 #define CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_ 6 #define CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/memory/scoped_ptr.h"
11 #include "net/cookies/cookie_monster.h" 11 #include "net/cookies/cookie_monster.h"
12 #include "net/disk_cache/disk_cache.h" 12 #include "net/disk_cache/disk_cache.h"
13 #include "net/dns/host_resolver.h" 13 #include "net/dns/host_resolver.h"
14 #include "net/ftp/ftp_network_layer.h" 14 #include "net/ftp/ftp_network_layer.h"
15 #include "net/http/http_auth_handler_factory.h" 15 #include "net/http/http_auth_handler_factory.h"
16 #include "net/http/http_cache.h" 16 #include "net/http/http_cache.h"
17 #include "net/http/http_network_layer.h" 17 #include "net/http/http_network_layer.h"
18 #include "net/ssl/ssl_config_service_defaults.h" 18 #include "net/ssl/ssl_config_service_defaults.h"
19 #include "net/url_request/url_request_context.h" 19 #include "net/url_request/url_request_context.h"
20 #include "net/url_request/url_request_context_getter.h" 20 #include "net/url_request/url_request_context_getter.h"
(...skipping 20 matching lines...) Expand all
41 return user_agent_; 41 return user_agent_;
42 } 42 }
43 43
44 private: 44 private:
45 friend class ServiceProcess; 45 friend class ServiceProcess;
46 ServiceURLRequestContextGetter(); 46 ServiceURLRequestContextGetter();
47 ~ServiceURLRequestContextGetter() override; 47 ~ServiceURLRequestContextGetter() override;
48 48
49 std::string user_agent_; 49 std::string user_agent_;
50 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; 50 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
51 scoped_ptr<net::ProxyConfigService> proxy_config_service_; 51 std::unique_ptr<net::ProxyConfigService> proxy_config_service_;
52 scoped_ptr<net::URLRequestContext> url_request_context_; 52 std::unique_ptr<net::URLRequestContext> url_request_context_;
53 }; 53 };
54 54
55 #endif // CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_ 55 #endif // CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_GETTER_H_
OLDNEW
« no previous file with comments | « chrome/service/cloud_print/printer_job_queue_handler_unittest.cc ('k') | chrome/service/service_ipc_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698