| Index: chrome/browser/extensions/api/location/location_manager.h
|
| diff --git a/chrome/browser/extensions/api/location/location_manager.h b/chrome/browser/extensions/api/location/location_manager.h
|
| index 24bb38b080c5a36cbd9d30630fa215493ee9fad7..f56c5c628624eb572c4803924b0bb2acaf37a0db 100644
|
| --- a/chrome/browser/extensions/api/location/location_manager.h
|
| +++ b/chrome/browser/extensions/api/location/location_manager.h
|
| @@ -35,7 +35,7 @@ class LocationManager : public BrowserContextKeyedAPI,
|
| public ExtensionRegistryObserver {
|
| public:
|
| explicit LocationManager(content::BrowserContext* context);
|
| - virtual ~LocationManager();
|
| + ~LocationManager() override;
|
|
|
| // Adds location request for the given extension, and starts the location
|
| // tracking.
|
| @@ -77,12 +77,11 @@ class LocationManager : public BrowserContextKeyedAPI,
|
| const content::Geoposition& position);
|
|
|
| // ExtensionRegistryObserver implementation.
|
| - virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| - const Extension* extension) override;
|
| - virtual void OnExtensionUnloaded(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - UnloadedExtensionInfo::Reason reason) override;
|
| + void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| + const Extension* extension) override;
|
| + void OnExtensionUnloaded(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + UnloadedExtensionInfo::Reason reason) override;
|
|
|
| // BrowserContextKeyedAPI implementation.
|
| static const char* service_name() { return "LocationManager"; }
|
|
|