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.
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.
8 /** @suppress {duplicate} */
9 var remoting
= remoting
|| {};
12 * @extends HTMLEmbedElement
14 remoting
.ViewerPlugin = function() { };
16 /** @param {string} message The message to send to the host. */
17 remoting
.ViewerPlugin
.prototype.postMessage = function(message
) {};