Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #include "nsISupports.idl"
7 interface nsIInterfaceRequestor;
9 /**
10 * nsICertPickDialogs
11 * Provides generic UI for choosing a certificate
12 */
13 [scriptable, uuid(51d59b08-1dd2-11b2-ad4a-a51b92f8a184)]
14 interface nsICertPickDialogs : nsISupports
15 {
16 /**
17 * PickCertificate
18 * General purpose certificate prompter
19 */
20 void PickCertificate(in nsIInterfaceRequestor ctx,
21 [array, size_is(count)] in wstring certNickList,
22 [array, size_is(count)] in wstring certDetailsList,
23 in unsigned long count,
24 inout long selectedIndex,
25 out boolean canceled);
26 };
28 %{C++
29 #define NS_CERTPICKDIALOGS_CONTRACTID "@mozilla.org/nsCertPickDialogs;1"
30 %}