OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Externs which are common for all applications under ui/file_manager. | |
fukino
2014/12/22 03:30:09
Could you divide externs file which defines proper
yawano
2014/12/22 04:04:41
Done. Removed externs/common.js.
| |
6 | |
5 /** | 7 /** |
6 * @fileoverview Externs for the braille IME. | 8 * @type {string} |
7 * @externs | |
8 */ | 9 */ |
10 Window.prototype.appID; | |
9 | 11 |
10 /** | 12 /** |
11 * @type {Object} | 13 * @type {Object} |
12 */ | 14 */ |
13 var localStorage; | 15 Window.prototype.appState; |
16 | |
17 /** | |
18 * @type {string} | |
19 */ | |
20 Entry.prototype.cachedUrl; | |
OLD | NEW |