1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/manager/pki/src/nsNSSDialogHelper.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.5 + * 1.6 + * This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef nsNSSDialogHelper_h 1.11 +#define nsNSSDialogHelper_h 1.12 + 1.13 +#include "nsIDOMWindow.h" 1.14 + 1.15 +/** 1.16 + * Common class that uses the window watcher service to open a 1.17 + * standard dialog, with or without a parent context. The params 1.18 + * parameter can be an nsISupportsArray so any number of additional 1.19 + * arguments can be used. 1.20 + */ 1.21 +class nsNSSDialogHelper 1.22 +{ 1.23 +public: 1.24 + //The params is going to be either a nsIPKIParamBlock or 1.25 + //nsIDialogParamBlock 1.26 + static nsresult openDialog( 1.27 + nsIDOMWindow *window, 1.28 + const char *url, 1.29 + nsISupports *params, 1.30 + bool modal = true); 1.31 +}; 1.32 + 1.33 +#endif