2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-10-25 19:36:24 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsIMessageLoop.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nsMessageLoop implements nsIMessageLoop, which wraps Chromium's MessageLoop
|
|
|
|
* class and adds a bit of sugar.
|
|
|
|
*/
|
|
|
|
class nsMessageLoop : public nsIMessageLoop
|
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIMESSAGELOOP
|
|
|
|
|
2014-07-01 02:11:53 +04:00
|
|
|
private:
|
2014-05-13 21:41:38 +04:00
|
|
|
virtual ~nsMessageLoop()
|
|
|
|
{
|
|
|
|
}
|
2012-10-25 19:36:24 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NS_MESSAGE_LOOP_CID \
|
|
|
|
{0x67b3ac0c, 0xd806, 0x4d48, \
|
|
|
|
{0x93, 0x9e, 0x6a, 0x81, 0x9e, 0x6c, 0x24, 0x8f}}
|
|
|
|
|
|
|
|
extern nsresult
|
2014-05-13 21:41:38 +04:00
|
|
|
nsMessageLoopConstructor(nsISupports* aOuter,
|
2012-10-25 19:36:24 +04:00
|
|
|
const nsIID& aIID,
|
2014-05-13 21:41:38 +04:00
|
|
|
void** aInstancePtr);
|