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

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

Issue 1530002: Move history API out of experimental. Allow extensions to override history page. (Closed)
Patch Set: Rebase for commit. Created 10 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 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 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 #include "chrome/browser/extensions/extension_history_api_constants.h" 5 #include "chrome/browser/extensions/extension_history_api_constants.h"
6 6
7 namespace extension_history_api_constants { 7 namespace extension_history_api_constants {
8 8
9 const wchar_t kAllHistoryKey[] = L"allHistory"; 9 const wchar_t kAllHistoryKey[] = L"allHistory";
10 const wchar_t kEndTimeKey[] = L"endTime"; 10 const wchar_t kEndTimeKey[] = L"endTime";
11 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; 11 const wchar_t kFavIconUrlKey[] = L"favIconUrl";
12 const wchar_t kIdKey[] = L"id"; 12 const wchar_t kIdKey[] = L"id";
13 const wchar_t kLastVisitdKey[] = L"lastVisitTime"; 13 const wchar_t kLastVisitdKey[] = L"lastVisitTime";
14 const wchar_t kMaxResultsKey[] = L"maxResults"; 14 const wchar_t kMaxResultsKey[] = L"maxResults";
15 const wchar_t kNewKey[] = L"new"; 15 const wchar_t kNewKey[] = L"new";
16 const wchar_t kReferringVisitId[] = L"referringVisitId"; 16 const wchar_t kReferringVisitId[] = L"referringVisitId";
17 const wchar_t kRemovedKey[] = L"removed"; 17 const wchar_t kRemovedKey[] = L"removed";
18 const wchar_t kStartTimeKey[] = L"startTime"; 18 const wchar_t kStartTimeKey[] = L"startTime";
19 const wchar_t kTextKey[] = L"text"; 19 const wchar_t kTextKey[] = L"text";
20 const wchar_t kTitleKey[] = L"title"; 20 const wchar_t kTitleKey[] = L"title";
21 const wchar_t kTypedCountKey[] = L"typedCount"; 21 const wchar_t kTypedCountKey[] = L"typedCount";
22 const wchar_t kVisitCountKey[] = L"visitCount"; 22 const wchar_t kVisitCountKey[] = L"visitCount";
23 const wchar_t kTransition[] = L"transition"; 23 const wchar_t kTransition[] = L"transition";
24 const wchar_t kUrlKey[] = L"url"; 24 const wchar_t kUrlKey[] = L"url";
25 const wchar_t kUrlsKey[] = L"urls"; 25 const wchar_t kUrlsKey[] = L"urls";
26 const wchar_t kVisitId[] = L"visitId"; 26 const wchar_t kVisitId[] = L"visitId";
27 const wchar_t kVisitTime[] = L"visitTime"; 27 const wchar_t kVisitTime[] = L"visitTime";
28 28
29 const char kOnVisited[] = "experimental.history.onVisited"; 29 const char kOnVisited[] = "history.onVisited";
30 const char kOnVisitRemoved[] = "experimental.history.onVisitRemoved"; 30 const char kOnVisitRemoved[] = "history.onVisitRemoved";
31 31
32 const char kInvalidIdError[] = "History item id is invalid."; 32 const char kInvalidIdError[] = "History item id is invalid.";
33 const char kInvalidUrlError[] = "Url is invalid."; 33 const char kInvalidUrlError[] = "Url is invalid.";
34 34
35 } // namespace extension_history_api_constants 35 } // namespace extension_history_api_constants
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_history_api.cc ('k') | chrome/browser/extensions/extension_history_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698