| Index: chrome/browser/extensions/api/processes/processes_api.h
|
| diff --git a/chrome/browser/extensions/api/processes/processes_api.h b/chrome/browser/extensions/api/processes/processes_api.h
|
| index 035a705a8db0b7a7546ed5d151d95167aeac8003..dd89ca294353c5fbfee10f3faa47263b93c15b66 100644
|
| --- a/chrome/browser/extensions/api/processes/processes_api.h
|
| +++ b/chrome/browser/extensions/api/processes/processes_api.h
|
| @@ -139,7 +139,7 @@ class GetProcessIdForTabFunction : public ChromeAsyncExtensionFunction {
|
|
|
| private:
|
| virtual ~GetProcessIdForTabFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| void GetProcessIdForTab();
|
|
|
| @@ -161,8 +161,7 @@ class TerminateFunction : public ChromeAsyncExtensionFunction {
|
|
|
| private:
|
| virtual ~TerminateFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| -
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| void TerminateProcess();
|
|
|
| @@ -181,7 +180,7 @@ class GetProcessInfoFunction : public ChromeAsyncExtensionFunction {
|
|
|
| private:
|
| virtual ~GetProcessInfoFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| void GatherProcessInfo();
|
|
|
|
|