| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 /** | 5 /** |
| 6 * @fileoverview Externs for objects sent from C++ to chrome://history. | 6 * @fileoverview Externs for objects sent from C++ to chrome://history. |
| 7 * @externs | 7 * @externs |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 var HistoryQuery; | 42 var HistoryQuery; |
| 43 | 43 |
| 44 /** | 44 /** |
| 45 * The type of the foreign session info object. This definition is based on | 45 * The type of the foreign session info object. This definition is based on |
| 46 * chrome/browser/ui/webui/foreign_session_handler.cc: | 46 * chrome/browser/ui/webui/foreign_session_handler.cc: |
| 47 * @typedef {{collapsed: boolean, | 47 * @typedef {{collapsed: boolean, |
| 48 * deviceType: string, | 48 * deviceType: string, |
| 49 * name: string, | 49 * name: string, |
| 50 * modifiedTime: string, | 50 * modifiedTime: string, |
| 51 * tag: string, | 51 * tag: string, |
| 52 * timestamp: number, |
| 52 * windows: Array}} | 53 * windows: Array}} |
| 53 */ | 54 */ |
| 54 var ForeignSession; | 55 var ForeignSession; |
| 55 | 56 |
| 56 /** | 57 /** |
| 57 * The type of the foreign session tab object. This definition is based on | 58 * The type of the foreign session tab object. This definition is based on |
| 58 * chrome/browser/ui/webui/foreign_session_handler.cc: | 59 * chrome/browser/ui/webui/foreign_session_handler.cc: |
| 59 * @typedef {{direction: string, | 60 * @typedef {{direction: string, |
| 60 * sessionId: number, | 61 * sessionId: number, |
| 61 * timestamp: number, | 62 * timestamp: number, |
| 62 * title: string, | 63 * title: string, |
| 63 * type: string, | 64 * type: string, |
| 64 * url: string}} | 65 * url: string}} |
| 65 */ | 66 */ |
| 66 var ForeignSessionTab; | 67 var ForeignSessionTab; |
| OLD | NEW |