2013-07-30 07:03:06 -07: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_apps_InterAppComm_h
|
|
|
|
#define mozilla_dom_apps_InterAppComm_h
|
|
|
|
|
2013-09-27 03:50:05 -07:00
|
|
|
#include "mozilla/dom/MozInterAppMessageEvent.h"
|
|
|
|
|
2013-07-30 07:03:06 -07:00
|
|
|
// Forward declarations.
|
|
|
|
struct JSContext;
|
|
|
|
class JSObject;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class InterAppComm
|
|
|
|
{
|
|
|
|
public:
|
2014-02-05 10:38:18 -08:00
|
|
|
static bool EnabledForScope(JSContext* /* unused */,
|
|
|
|
JS::Handle<JSObject*> /* unused */);
|
2013-07-30 07:03:06 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_apps_InterAppComm_h
|