1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/**
6 * @fileoverview Additional externs for the Closure Compiler.
7 * @author jbroman@google.com (Jeremy Roman)
8 * @externs
9 */
10
11/**
12 * <embed> element which wraps a Native Client module.
13 * @constructor
14 * @extends HTMLEmbedElement
15 */
16function NaClEmbedElement() {}
17
18/**
19 * Exposed when Native Client is present.
20 * @param {*} message Message to post.
21 */
22NaClEmbedElement.prototype.postMessage = function(message) {};
23