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

Unified Diff: chrome/browser/resources/history/externs.js

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: axe more android stuff Created 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/history/externs.js
diff --git a/chrome/browser/resources/history/externs.js b/chrome/browser/resources/history/externs.js
deleted file mode 100644
index 2495b762fbf02d763ac6da40531f841565cef638..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/history/externs.js
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-/**
- * @fileoverview Externs for objects sent from C++ to chrome://history.
- * @externs
- */
-
-/**
- * The type of the history result object. The definition is based on
- * chrome/browser/ui/webui/browsing_history_handler.cc:
- * BrowsingHistoryHandler::HistoryEntry::ToValue()
- * @typedef {{allTimestamps: Array<number>,
- * blockedVisit: boolean,
- * dateRelativeDay: string,
- * dateShort: string,
- * dateTimeOfDay: string,
- * deviceName: string,
- * deviceType: string,
- * domain: string,
- * fallbackFaviconText: string,
- * hostFilteringBehavior: number,
- * snippet: string,
- * starred: boolean,
- * time: number,
- * title: string,
- * url: string}}
- */
-var HistoryEntry;
-
-/**
- * The type of the history results info object. The definition is based on
- * chrome/browser/ui/webui/browsing_history_handler.cc:
- * BrowsingHistoryHandler::QueryComplete()
- * @typedef {{finished: boolean,
- * hasSyncedResults: boolean,
- * queryInterval: string,
- * queryStartMonth: string,
- * term: string}}
- */
-var HistoryQuery;
-
-/**
- * The type of the foreign session tab object. This definition is based on
- * chrome/browser/ui/webui/foreign_session_handler.cc:
- * @typedef {{direction: string,
- * sessionId: number,
- * timestamp: number,
- * title: string,
- * type: string,
- * url: string}}
- */
-var ForeignSessionTab;
-
-/**
- * The type of the foreign session tab object. This definition is based on
- * chrome/browser/ui/webui/foreign_session_handler.cc:
- * @typedef {{timestamp: number,
- * userVisibleTimestamp: string,
- * sessionId: number,
- * tabs: Array<ForeignSessionTab>}}
- */
-var ForeignSessionWindow;
-
-/**
- * The type of the foreign session info object. This definition is based on
- * chrome/browser/ui/webui/foreign_session_handler.cc:
- * @typedef {{collapsed: boolean,
- * deviceType: string,
- * name: string,
- * modifiedTime: string,
- * tag: string,
- * timestamp: number,
- * windows: Array<ForeignSessionWindow>}}
- */
-var ForeignSession;

Powered by Google App Engine
This is Rietveld 408576698