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

Unified Diff: chrome/browser/extensions/api/history/history_api.h

Issue 11747025: Run the JSON Schema Compiler's bundle compilation on JSON files. Previously it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ms release build Created 7 years, 11 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
Index: chrome/browser/extensions/api/history/history_api.h
diff --git a/chrome/browser/extensions/api/history/history_api.h b/chrome/browser/extensions/api/history/history_api.h
index 83860eb202fc7cc4e4484674985da54d09576c16..9700b1823eb3c9dd6ff9af58073790a53536a33a 100644
--- a/chrome/browser/extensions/api/history/history_api.h
+++ b/chrome/browser/extensions/api/history/history_api.h
@@ -112,12 +112,12 @@ class HistoryFunctionWithCallback : public HistoryFunction {
void SendResponseToCallback();
};
-class GetMostVisitedHistoryFunction : public HistoryFunctionWithCallback {
+class HistoryGetMostVisitedFunction : public HistoryFunctionWithCallback {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.history.getMostVisited");
protected:
- virtual ~GetMostVisitedHistoryFunction() {}
+ virtual ~HistoryGetMostVisitedFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunAsyncImpl() OVERRIDE;
@@ -127,12 +127,12 @@ class GetMostVisitedHistoryFunction : public HistoryFunctionWithCallback {
const history::FilteredURLList& data);
};
-class GetVisitsHistoryFunction : public HistoryFunctionWithCallback {
+class HistoryGetVisitsFunction : public HistoryFunctionWithCallback {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.getVisits");
protected:
- virtual ~GetVisitsHistoryFunction() {}
+ virtual ~HistoryGetVisitsFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunAsyncImpl() OVERRIDE;
@@ -144,12 +144,12 @@ class GetVisitsHistoryFunction : public HistoryFunctionWithCallback {
history::VisitVector* visits);
};
-class SearchHistoryFunction : public HistoryFunctionWithCallback {
+class HistorySearchFunction : public HistoryFunctionWithCallback {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.search");
protected:
- virtual ~SearchHistoryFunction() {}
+ virtual ~HistorySearchFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunAsyncImpl() OVERRIDE;
@@ -159,23 +159,23 @@ class SearchHistoryFunction : public HistoryFunctionWithCallback {
history::QueryResults* results);
};
-class AddUrlHistoryFunction : public HistoryFunction {
+class HistoryAddUrlFunction : public HistoryFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.addUrl");
protected:
- virtual ~AddUrlHistoryFunction() {}
+ virtual ~HistoryAddUrlFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunImpl() OVERRIDE;
};
-class DeleteAllHistoryFunction : public HistoryFunctionWithCallback {
+class HistoryDeleteAllFunction : public HistoryFunctionWithCallback {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.deleteAll");
protected:
- virtual ~DeleteAllHistoryFunction() {}
+ virtual ~HistoryDeleteAllFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunAsyncImpl() OVERRIDE;
@@ -185,23 +185,23 @@ class DeleteAllHistoryFunction : public HistoryFunctionWithCallback {
};
-class DeleteUrlHistoryFunction : public HistoryFunction {
+class HistoryDeleteUrlFunction : public HistoryFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.deleteUrl");
protected:
- virtual ~DeleteUrlHistoryFunction() {}
+ virtual ~HistoryDeleteUrlFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunImpl() OVERRIDE;
};
-class DeleteRangeHistoryFunction : public HistoryFunctionWithCallback {
+class HistoryDeleteRangeFunction : public HistoryFunctionWithCallback {
public:
DECLARE_EXTENSION_FUNCTION_NAME("history.deleteRange");
protected:
- virtual ~DeleteRangeHistoryFunction() {}
+ virtual ~HistoryDeleteRangeFunction() {}
// HistoryFunctionWithCallback:
virtual bool RunAsyncImpl() OVERRIDE;
« no previous file with comments | « chrome/browser/extensions/api/font_settings/font_settings_api.cc ('k') | chrome/browser/extensions/api/history/history_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698