1// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/extensions/extension_history_api_constants.h"
6
7namespace extension_history_api_constants {
8
9const char kAllHistoryKey[] = "allHistory";
10const char kEndTimeKey[] = "endTime";
11const char kFaviconUrlKey[] = "favIconUrl";
12const char kIdKey[] = "id";
13const char kLastVisitdKey[] = "lastVisitTime";
14const char kMaxResultsKey[] = "maxResults";
15const char kNewKey[] = "new";
16const char kReferringVisitId[] = "referringVisitId";
17const char kRemovedKey[] = "removed";
18const char kStartTimeKey[] = "startTime";
19const char kTextKey[] = "text";
20const char kTitleKey[] = "title";
21const char kTypedCountKey[] = "typedCount";
22const char kVisitCountKey[] = "visitCount";
23const char kTransition[] = "transition";
24const char kUrlKey[] = "url";
25const char kUrlsKey[] = "urls";
26const char kVisitId[] = "visitId";
27const char kVisitTime[] = "visitTime";
28
29const char kOnVisited[] = "history.onVisited";
30const char kOnVisitRemoved[] = "history.onVisitRemoved";
31
32const char kInvalidIdError[] = "History item id is invalid.";
33const char kInvalidUrlError[] = "Url is invalid.";
34
35}  // namespace extension_history_api_constants
36