OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
| 10 #include <memory> |
10 #include <string> | 11 #include <string> |
11 | 12 |
12 #include "base/callback.h" | 13 #include "base/callback.h" |
13 #include "base/memory/scoped_ptr.h" | |
14 #include "base/supports_user_data.h" | 14 #include "base/supports_user_data.h" |
15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
17 | 17 |
18 class GURL; | 18 class GURL; |
19 | 19 |
20 namespace net { | 20 namespace net { |
21 class ClientCertStore; | 21 class ClientCertStore; |
22 class HostResolver; | 22 class HostResolver; |
23 class KeygenHandler; | 23 class KeygenHandler; |
(...skipping 12 matching lines...) Expand all Loading... |
36 ResourceContext(); | 36 ResourceContext(); |
37 ~ResourceContext() override; | 37 ~ResourceContext() override; |
38 virtual net::HostResolver* GetHostResolver() = 0; | 38 virtual net::HostResolver* GetHostResolver() = 0; |
39 | 39 |
40 // DEPRECATED: This is no longer a valid given isolated apps/sites and | 40 // DEPRECATED: This is no longer a valid given isolated apps/sites and |
41 // storage partitioning. This getter returns the default context associated | 41 // storage partitioning. This getter returns the default context associated |
42 // with a BrowsingContext. | 42 // with a BrowsingContext. |
43 virtual net::URLRequestContext* GetRequestContext() = 0; | 43 virtual net::URLRequestContext* GetRequestContext() = 0; |
44 | 44 |
45 // Get platform ClientCertStore. May return nullptr. | 45 // Get platform ClientCertStore. May return nullptr. |
46 virtual scoped_ptr<net::ClientCertStore> CreateClientCertStore(); | 46 virtual std::unique_ptr<net::ClientCertStore> CreateClientCertStore(); |
47 | 47 |
48 // Create a platform KeygenHandler and pass it to |callback|. The |callback| | 48 // Create a platform KeygenHandler and pass it to |callback|. The |callback| |
49 // may be run synchronously. | 49 // may be run synchronously. |
50 virtual void CreateKeygenHandler( | 50 virtual void CreateKeygenHandler( |
51 uint32_t key_size_in_bits, | 51 uint32_t key_size_in_bits, |
52 const std::string& challenge_string, | 52 const std::string& challenge_string, |
53 const GURL& url, | 53 const GURL& url, |
54 const base::Callback<void(scoped_ptr<net::KeygenHandler>)>& callback); | 54 const base::Callback<void(std::unique_ptr<net::KeygenHandler>)>& |
| 55 callback); |
55 | 56 |
56 // Returns a callback that can be invoked to get a random salt | 57 // Returns a callback that can be invoked to get a random salt |
57 // string that is used for creating media device IDs. The salt | 58 // string that is used for creating media device IDs. The salt |
58 // should be stored in the current user profile and should be reset | 59 // should be stored in the current user profile and should be reset |
59 // if cookies are cleared. The default is an empty string. | 60 // if cookies are cleared. The default is an empty string. |
60 // | 61 // |
61 // It is safe to hold on to the callback returned and use it without | 62 // It is safe to hold on to the callback returned and use it without |
62 // regard to the lifetime of ResourceContext, although in general | 63 // regard to the lifetime of ResourceContext, although in general |
63 // you should not use it long after the profile has been destroyed. | 64 // you should not use it long after the profile has been destroyed. |
64 // | 65 // |
65 // TODO(joi): We don't think it should be unnecessary to use this | 66 // TODO(joi): We don't think it should be unnecessary to use this |
66 // after ResourceContext goes away. There is likely an underying bug | 67 // after ResourceContext goes away. There is likely an underying bug |
67 // in the lifetime of ProfileIOData vs. ResourceProcessHost, where | 68 // in the lifetime of ProfileIOData vs. ResourceProcessHost, where |
68 // sometimes ProfileIOData has gone away before RPH has finished | 69 // sometimes ProfileIOData has gone away before RPH has finished |
69 // being torn down (on the IO thread). The current interface that | 70 // being torn down (on the IO thread). The current interface that |
70 // allows using the salt object after ResourceContext has gone away | 71 // allows using the salt object after ResourceContext has gone away |
71 // was put in place to fix http://crbug.com/341211 but I intend to | 72 // was put in place to fix http://crbug.com/341211 but I intend to |
72 // try to figure out how the lifetime should be fixed properly. The | 73 // try to figure out how the lifetime should be fixed properly. The |
73 // original interface was just a method that returns a string. | 74 // original interface was just a method that returns a string. |
74 // | 75 // |
75 // TODO(perkj): Make this method pure virtual when crbug/315022 is | 76 // TODO(perkj): Make this method pure virtual when crbug/315022 is |
76 // fixed. | 77 // fixed. |
77 typedef base::Callback<std::string()> SaltCallback; | 78 typedef base::Callback<std::string()> SaltCallback; |
78 virtual SaltCallback GetMediaDeviceIDSalt(); | 79 virtual SaltCallback GetMediaDeviceIDSalt(); |
79 }; | 80 }; |
80 | 81 |
81 } // namespace content | 82 } // namespace content |
82 | 83 |
83 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ | 84 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |
OLD | NEW |