| 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 3b13b28d3466cfe4ac83d102ab06183c4702e5ae..32040b5645ccb0878cba3695d21d5bf06fc4032a 100644
|
| --- a/chrome/browser/extensions/api/history/history_api.h
|
| +++ b/chrome/browser/extensions/api/history/history_api.h
|
| @@ -105,7 +105,7 @@ class HistoryFunctionWithCallback : public HistoryFunction {
|
| virtual ~HistoryFunctionWithCallback();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // Return true if the async call was completed, false otherwise.
|
| virtual bool RunAsyncImpl() = 0;
|
| @@ -164,7 +164,7 @@ class HistoryAddUrlFunction : public HistoryFunction {
|
| virtual ~HistoryAddUrlFunction() {}
|
|
|
| // HistoryFunctionWithCallback:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class HistoryDeleteAllFunction : public HistoryFunctionWithCallback {
|
| @@ -190,7 +190,7 @@ class HistoryDeleteUrlFunction : public HistoryFunction {
|
| virtual ~HistoryDeleteUrlFunction() {}
|
|
|
| // HistoryFunctionWithCallback:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class HistoryDeleteRangeFunction : public HistoryFunctionWithCallback {
|
|
|