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

Side by Side Diff: third_party/closure_compiler/externs/pending_compiler_externs.js

Issue 418663002: Typecheck JS files for chrome://help before doing import transition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@json_to_pydict
Patch Set: Created 6 years, 5 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
OLDNEW
1 /** 1 /**
2 * @fileoverview Temporary externs until compiler/compiler.jar catches up. 2 * @fileoverview Temporary externs until compiler/compiler.jar catches up.
3 * @externs 3 * @externs
4 */ 4 */
5 5
6 /** 6 /**
7 * Creates a new HTML Document. 7 * Creates a new HTML Document.
8 * @see http://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument 8 * @see http://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument
9 * @param {string=} opt_title The title to give the new HTML document. 9 * @param {string=} opt_title The title to give the new HTML document.
10 */ 10 */
11 document.implementation.createHTMLDocument = function(opt_title) {}; 11 document.implementation.createHTMLDocument = function(opt_title) {};
12
13 /**
Dan Beam 2014/07/23 22:09:24 document these params
Vitaly Pavlenko 2014/07/24 01:09:31 Done.
14 * @constructor
15 */
16 function PopStateEvent(type, params) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698