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 UI thread. |
| 21 // It dispatches DTLS identity requests to the background worker thread. |
| 22 class DTLSIdentityStore { |
| 23 public: |
| 24 static DTLSIdentityStore* GetInstance(); |
| 25 DTLSIdentityStore(); |
| 26 DTLSIdentityStore(const scoped_refptr<base::TaskRunner>& task_runner); |
| 27 ~DTLSIdentityStore(); |
| 28 |
| 29 typedef base::Callback<void(const std::string&, const std::string&)> |
| 30 OnCompleteCallback; |
| 31 |
| 32 // Get the DTLS identity for the given domain of |url|, or generate a new one |
| 33 // if not existent. Asynchronous. Called on the browser UI thread. |
| 34 // |url| is the frame URL of the PeerConnection requesting the identity; |
| 35 // |identity_name| is the name of the identity; |
| 36 // |common_name| ??? |
| 37 // |callback| is the callback to return the result. |
| 38 void GetOrGenerateIdentity(const GURL& url, |
| 39 const std::string& identity_name, |
| 40 const std::string& common_name, |
| 41 const OnCompleteCallback& callback |
| 42 ); |
| 43 private: |
| 44 friend struct DefaultSingletonTraits<DTLSIdentityStore>; |
| 45 |
| 46 // The TaskRunner for doing work on a worker thread. |
| 47 scoped_refptr<base::TaskRunner> task_runner_; |
| 48 }; |
| 49 |
| 50 } // namespace content |
| 51 |
| 52 #endif // CONTENT_BROWSER_MEDIA_DTLS_IDENTITY_STORE_H_ |
OLD | NEW |