Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_MEDIA_DTLS_IDENTITY_STORE_H_ | |
| 6 #define CONTENT_BROWSER_MEDIA_DTLS_IDENTITY_STORE_H_ | |
| 7 | |
| 8 #include "base/callback.h" | |
| 9 #include "base/memory/ref_counted.h" | |
| 10 #include "base/memory/singleton.h" | |
| 11 | |
| 12 class GURL; | |
| 13 | |
| 14 namespace base { | |
| 15 class TaskRunner; | |
| 16 } // namespace base | |
| 17 | |
| 18 namespace content { | |
| 19 | |
| 20 // This is a singleton class called in the browser IO thread. | |
| 21 // It dispatches DTLS identity requests to the background worker thread. | |
| 22 class DTLSIdentityStore { | |
| 23 public: | |
| 24 static DTLSIdentityStore* GetInstance(); | |
| 25 | |
| 26 typedef base::Callback<void(const std::string&, const std::string&)> | |
|
Ami GONE FROM CHROMIUM
2013/06/06 18:28:51
doco params (cert/privatekey)
jiayl
2013/06/06 21:00:08
Done.
| |
| 27 OnCompleteCallback; | |
| 28 | |
| 29 // Get the DTLS identity for the given origin, or generate a new one | |
| 30 // if not existent. Asynchronous. Called on the browser IO thread. | |
| 31 // |origin| is the origin of the PeerConnection requesting the identity; | |
| 32 // |identity_name| is used to identity an identity within an origin; | |
| 33 // |common_name| is the common name used to generate the certificate; | |
| 34 // |callback| is the callback to return the result. | |
| 35 void GetOrGenerateIdentity(const GURL& origin, | |
| 36 const std::string& identity_name, | |
| 37 const std::string& common_name, | |
| 38 const OnCompleteCallback& callback); | |
| 39 protected: | |
| 40 explicit DTLSIdentityStore( | |
| 41 const scoped_refptr<base::TaskRunner>& task_runner); | |
| 42 virtual ~DTLSIdentityStore(); | |
| 43 | |
| 44 private: | |
| 45 friend struct DefaultSingletonTraits<DTLSIdentityStore>; | |
| 46 | |
| 47 DTLSIdentityStore(); | |
| 48 | |
| 49 // The TaskRunner for doing work on a worker thread. | |
| 50 scoped_refptr<base::TaskRunner> task_runner_; | |
| 51 }; | |
| 52 | |
| 53 } // namespace content | |
| 54 | |
| 55 #endif // CONTENT_BROWSER_MEDIA_DTLS_IDENTITY_STORE_H_ | |
| OLD | NEW |