Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Side by Side Diff: remoting/webapp/jscompiler_hacks.js

Issue 9884001: Added screen options menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use Document.prototype instead of document to declare the webkitIsFullScreen property. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 various hacks needed to inform JSCompiler of various
6 // WebKit-specific properties and methods. It is used only with JSCompiler
7 // to verify the type-correctness of our code.
8
9 /** @return {void} Nothing. */
10 Document.prototype.webkitCancelFullScreen = function() {};
11
12 /** @type {boolean} */
13 Document.prototype.webkitIsFullScreen;
14
15 /** @return {void} Nothing. */
16 Element.prototype.webkitRequestFullScreen = function() {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698