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

Side by Side Diff: content/renderer/media/dtls_identity_service.cc

Issue 15969025: Generates the DTLS identity in browser process and returns it to render process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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
(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 #include "content/renderer/media/dtls_identity_service.h"
6
7 #include "content/common/media/dtls_identity_messages.h"
8 #include "content/renderer/render_thread_impl.h"
9
10 namespace content {
11
12 DTLSIdentityService::DTLSIdentityService(
13 const GURL& origin,
14 DTLSIdentityObserver* observer)
15 : origin_(origin) {
16 DCHECK(observer);
17 observer_.reset(observer);
18 }
19
20 DTLSIdentityService::~DTLSIdentityService() {}
21
22 bool DTLSIdentityService::OnControlMessageReceived(
23 const IPC::Message& message) {
24 bool handled = true;
25 IPC_BEGIN_MESSAGE_MAP(DTLSIdentityService, message)
26 IPC_MESSAGE_HANDLER(DTLSIdentityMsg_IdentityReady, OnIdentityReady)
jam 2013/06/06 16:22:32 nit: indent this line and next
jiayl 2013/06/06 17:07:37 Done.
27 IPC_MESSAGE_UNHANDLED(handled = false)
28 IPC_END_MESSAGE_MAP()
29 return handled;
30 }
31
32 void DTLSIdentityService::GetOrGenerateIdentity(
33 const std::string& identity_name,
34 const std::string& common_name) {
35 RenderThreadImpl::current()->Send(
36 new DTLSIdentityMsg_GetOrGenerate(origin_, identity_name, common_name));
37 }
38
39 void DTLSIdentityService::OnIdentityReady(const std::string& certificate,
40 const std::string& private_key) {
41 observer_->OnCompleted(certificate, private_key);
42 }
43
44 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698