| 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 a39fc1ca27013c203342a8aa8b7116c52d97481b..316565125893f94dd7767c6a01aaafeefb5c08b3 100644
|
| --- a/chrome/browser/extensions/api/processes/processes_api.h
|
| +++ b/chrome/browser/extensions/api/processes/processes_api.h
|
| @@ -101,6 +101,9 @@ class ProcessesAPI : public ProfileKeyedAPI,
|
| // ProfileKeyedService implementation.
|
| virtual void Shutdown() OVERRIDE;
|
|
|
| + // ProfileKeyedAPI implementation.
|
| + static ProfileKeyedAPIFactory<ProcessesAPI>* GetFactoryInstance();
|
| +
|
| // Convenience method to get the ProcessesAPI for a profile.
|
| static ProcessesAPI* Get(Profile* profile);
|
|
|
| @@ -126,10 +129,6 @@ class ProcessesAPI : public ProfileKeyedAPI,
|
| scoped_ptr<ProcessesEventRouter> processes_event_router_;
|
| };
|
|
|
| -template <>
|
| -ProfileKeyedAPIFactory<ProcessesAPI>*
|
| -ProfileKeyedAPIFactory<ProcessesAPI>::GetInstance();
|
| -
|
| // This extension function returns the Process object for the renderer process
|
| // currently in use by the specified Tab.
|
| class GetProcessIdForTabFunction : public AsyncExtensionFunction,
|
|
|