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

Side by Side Diff: content/common/media/dtls_identity_messages.h

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 // IPC messages for requesting DTLS identity.
6 // Multiply-included message file, hence no include guard.
7
8 #include "googleurl/src/gurl.h"
9 #include "ipc/ipc_message_macros.h"
10
11 #define IPC_MESSAGE_START DtlsIdentityMsgStart
12
13 // Messages sent from the renderer to the browser.
14 // Request a DTLS identity.
15 IPC_MESSAGE_CONTROL3(DTLSIdentityMsg_GetOrGenerate,
jam 2013/06/06 16:22:32 nit: DTLSIdentityHostMsg. we use that convention t
16 GURL /* origin */,
17 std::string /* identity_name */,
18 std::string /* common_name */)
19
20 // Messages sent from the browser to the renderer.
21 // Return a DTLS identity.
22 IPC_MESSAGE_CONTROL2(DTLSIdentityMsg_IdentityReady,
23 std::string /* certificate */,
24 std::string /* private_key */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698