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

Unified Diff: chrome/browser/extensions/extension_history_api.h

Issue 1530002: Move history API out of experimental. Allow extensions to override history page. (Closed)
Patch Set: Rebase for commit. Created 10 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_history_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_history_api.h
diff --git a/chrome/browser/extensions/extension_history_api.h b/chrome/browser/extensions/extension_history_api.h
index 184fbb2de2710a4e111028e23bedb77559fc8ed9..71bb9be79e9d6b81a8b5704108fd09409fdb95f3 100644
--- a/chrome/browser/extensions/extension_history_api.h
+++ b/chrome/browser/extensions/extension_history_api.h
@@ -96,7 +96,7 @@ class GetVisitsHistoryFunction : public HistoryFunctionWithCallback {
public:
// Override HistoryFunction.
virtual bool RunAsyncImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.getVisits");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.getVisits");
// Callback for the history function to provide results.
void QueryComplete(HistoryService::Handle request_service,
@@ -108,7 +108,7 @@ class GetVisitsHistoryFunction : public HistoryFunctionWithCallback {
class SearchHistoryFunction : public HistoryFunctionWithCallback {
public:
virtual bool RunAsyncImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.search");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.search");
// Callback for the history function to provide results.
void SearchComplete(HistoryService::Handle request_handle,
@@ -118,13 +118,13 @@ class SearchHistoryFunction : public HistoryFunctionWithCallback {
class AddUrlHistoryFunction : public HistoryFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.addUrl");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.addUrl");
};
class DeleteAllHistoryFunction : public HistoryFunctionWithCallback {
public:
virtual bool RunAsyncImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.deleteAll");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.deleteAll");
// Callback for the history service to acknowledge deletion.
void DeleteComplete();
@@ -134,13 +134,13 @@ class DeleteAllHistoryFunction : public HistoryFunctionWithCallback {
class DeleteUrlHistoryFunction : public HistoryFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.deleteUrl");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.deleteUrl");
};
class DeleteRangeHistoryFunction : public HistoryFunctionWithCallback {
public:
virtual bool RunAsyncImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.deleteRange");
+ DECLARE_EXTENSION_FUNCTION_NAME("history.deleteRange");
// Callback for the history service to acknowledge deletion.
void DeleteComplete();
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_history_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698