Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 %}