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

Side by Side Diff: chrome/browser/extensions/extension_history_api_constants.cc

Issue 8372021: Move history extension API implementation to history dir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
7 namespace extension_history_api_constants {
8
9 const char kAllHistoryKey[] = "allHistory";
10 const char kEndTimeKey[] = "endTime";
11 const char kFaviconUrlKey[] = "favIconUrl";
12 const char kIdKey[] = "id";
13 const char kLastVisitdKey[] = "lastVisitTime";
14 const char kMaxResultsKey[] = "maxResults";
15 const char kNewKey[] = "new";
16 const char kReferringVisitId[] = "referringVisitId";
17 const char kRemovedKey[] = "removed";
18 const char kStartTimeKey[] = "startTime";
19 const char kTextKey[] = "text";
20 const char kTitleKey[] = "title";
21 const char kTypedCountKey[] = "typedCount";
22 const char kVisitCountKey[] = "visitCount";
23 const char kTransition[] = "transition";
24 const char kUrlKey[] = "url";
25 const char kUrlsKey[] = "urls";
26 const char kVisitId[] = "visitId";
27 const char kVisitTime[] = "visitTime";
28
29 const char kOnVisited[] = "history.onVisited";
30 const char kOnVisitRemoved[] = "history.onVisitRemoved";
31
32 const char kInvalidIdError[] = "History item id is invalid.";
33 const char kInvalidUrlError[] = "Url is invalid.";
34
35 } // namespace extension_history_api_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_history_api_constants.h ('k') | chrome/browser/extensions/extension_history_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698