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