- add sources.
[platform/framework/web/crosswalk.git] / src / remoting / webapp / viewer_plugin_proto.js
1 // Copyright (c) 2012 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 // This file contains type definitions for the viewer plugin. It is used only
6 // with JSCompiler to verify the type-correctness of our code.
7
8 /** @suppress {duplicate} */
9 var remoting = remoting || {};
10
11 /** @constructor
12  *  @extends HTMLEmbedElement
13  */
14 remoting.ViewerPlugin = function() { };
15
16 /** @param {string} message The message to send to the host. */
17 remoting.ViewerPlugin.prototype.postMessage = function(message) {};