summaryrefslogtreecommitdiff
path: root/chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md')
-rw-r--r--chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md65
1 files changed, 0 insertions, 65 deletions
diff --git a/chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md b/chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md
deleted file mode 100644
index 184dc19ccdf..00000000000
--- a/chromium/docs/website/site/developers/design-documents/extensions/proposed-changes/apis-under-development/history-api/index.md
+++ /dev/null
@@ -1,65 +0,0 @@
----
-breadcrumbs:
-- - /developers
- - For Developers
-- - /developers/design-documents
- - Design Documents
-- - /developers/design-documents/extensions
- - Extensions
-- - /developers/design-documents/extensions/proposed-changes
- - Proposed & Proposing New Changes
-- - /developers/design-documents/extensions/proposed-changes/apis-under-development
- - API Proposals (New APIs Start Here)
-page_name: history-api
-title: History API
----
-
-history.
-
-void search(HistoryQuery query, void callback(HistoryItem\[\] results))
-
-void clear(HistoryQuery query) // defaults to clearing all. Should we prompt?
-
-// NOTE: these could be done in a v2 -- I don't see huge use cases for them,
-except perhaps for synchronization.
-
-void create({int date, string url, string title, \[string favIconUrl\], \[int
-fromId\]}, \[void callback(HistoryItem result)\])
-
-event onHistoryItemCreated(HistoryItem new)
-
-event onHistoryItemRemoved(HistoryItem removed)
-
-struct HistoryItem {
-
-int id
-
-int date
-
-string url
-
-string title
-
-string favIconUrl
-
-int fromId
-
-int totalVisitCount
-
-int totalTypedCount
-
-}
-
-struct HistoryQuery {
-
-// limited to 100, defaults to current day.
-
-optional int\[\] ids
-
-optional string search
-
-optional Date startDate
-
-optional Date endDate
-
-} \ No newline at end of file