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

Side by Side Diff: chrome/browser/resources/history/externs.js

Issue 1874473004: MD History: Support dynamically updating synced tab data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698