| Index: chrome/browser/extensions/api/passwords_private/passwords_private_event_router_factory.h
|
| diff --git a/chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h b/chrome/browser/extensions/api/passwords_private/passwords_private_event_router_factory.h
|
| similarity index 52%
|
| copy from chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h
|
| copy to chrome/browser/extensions/api/passwords_private/passwords_private_event_router_factory.h
|
| index 653c9bdb84f9a57633b04d4447cbaa17dfb7859b..c9c03a71b5ea0f619b7b5ca4a790d83b8e433e18 100644
|
| --- a/chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h
|
| +++ b/chrome/browser/extensions/api/passwords_private/passwords_private_event_router_factory.h
|
| @@ -2,29 +2,29 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
| -#define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
| +#ifndef CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
| +#define CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
|
|
| #include "base/memory/singleton.h"
|
| #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
|
|
|
| namespace extensions {
|
|
|
| -class SettingsPrivateEventRouter;
|
| +class PasswordsPrivateEventRouter;
|
|
|
| // This is a factory class used by the BrowserContextDependencyManager
|
| -// to instantiate the settingsPrivate event router per profile (since the
|
| +// to instantiate the passwordsPrivate event router per profile (since the
|
| // extension event router is per profile).
|
| -class SettingsPrivateEventRouterFactory
|
| +class PasswordsPrivateEventRouterFactory
|
| : public BrowserContextKeyedServiceFactory {
|
| public:
|
| - // Returns the SettingsPrivateEventRouter for |profile|, creating it if
|
| + // Returns the PasswordsPrivateEventRouter for |profile|, creating it if
|
| // it is not yet created.
|
| - static SettingsPrivateEventRouter* GetForProfile(
|
| + static PasswordsPrivateEventRouter* GetForProfile(
|
| content::BrowserContext* context);
|
|
|
| - // Returns the SettingsPrivateEventRouterFactory instance.
|
| - static SettingsPrivateEventRouterFactory* GetInstance();
|
| + // Returns the PasswordsPrivateEventRouterFactory instance.
|
| + static PasswordsPrivateEventRouterFactory* GetInstance();
|
|
|
| protected:
|
| // BrowserContextKeyedBaseFactory overrides:
|
| @@ -34,18 +34,18 @@ class SettingsPrivateEventRouterFactory
|
| bool ServiceIsNULLWhileTesting() const override;
|
|
|
| private:
|
| - friend struct DefaultSingletonTraits<SettingsPrivateEventRouterFactory>;
|
| + friend struct DefaultSingletonTraits<PasswordsPrivateEventRouterFactory>;
|
|
|
| - SettingsPrivateEventRouterFactory();
|
| - ~SettingsPrivateEventRouterFactory() override;
|
| + PasswordsPrivateEventRouterFactory();
|
| + ~PasswordsPrivateEventRouterFactory() override;
|
|
|
| // BrowserContextKeyedServiceFactory:
|
| KeyedService* BuildServiceInstanceFor(
|
| content::BrowserContext* profile) const override;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(SettingsPrivateEventRouterFactory);
|
| + DISALLOW_COPY_AND_ASSIGN(PasswordsPrivateEventRouterFactory);
|
| };
|
|
|
| } // namespace extensions
|
|
|
| -#endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
| +#endif // CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_EVENT_ROUTER_FACTORY_H_
|
|
|