1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/embedding/browser/webBrowser/nsCommandHandler.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/* -*- Mode: C++; tab-width: 4; 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 NSCOMMANDHANDLER_H 1.11 +#define NSCOMMANDHANDLER_H 1.12 + 1.13 +#include "nsISupports.h" 1.14 +#include "nsICommandHandler.h" 1.15 +#include "nsIDOMWindow.h" 1.16 + 1.17 +class nsCommandHandler : 1.18 + public nsICommandHandlerInit, 1.19 + public nsICommandHandler 1.20 +{ 1.21 + nsIDOMWindow *mWindow; 1.22 + 1.23 + nsresult GetCommandHandler(nsICommandHandler **aCommandHandler); 1.24 + 1.25 +public: 1.26 + nsCommandHandler(); 1.27 + 1.28 + NS_DECL_ISUPPORTS 1.29 + NS_DECL_NSICOMMANDHANDLERINIT 1.30 + NS_DECL_NSICOMMANDHANDLER 1.31 + 1.32 +protected: 1.33 + virtual ~nsCommandHandler(); 1.34 +}; 1.35 + 1.36 +#endif 1.37 +