Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1578)

Unified Diff: chrome/browser/extensions/warning_badge_service_factory.h

Issue 921423003: Rename ExtensionWarningBadgeService to WarningBadgeService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/warning_badge_service_factory.h
diff --git a/chrome/browser/extensions/extension_warning_badge_service_factory.h b/chrome/browser/extensions/warning_badge_service_factory.h
similarity index 66%
rename from chrome/browser/extensions/extension_warning_badge_service_factory.h
rename to chrome/browser/extensions/warning_badge_service_factory.h
index 30a2e05674d0a57c17d3519a50f4ac4953be80f5..9d378e5e636f909cd988a6bb0d9e9501bcc3adbf 100644
--- a/chrome/browser/extensions/extension_warning_badge_service_factory.h
+++ b/chrome/browser/extensions/warning_badge_service_factory.h
@@ -10,20 +10,19 @@
namespace extensions {
-class ExtensionWarningBadgeService;
+class WarningBadgeService;
-class ExtensionWarningBadgeServiceFactory
- : public BrowserContextKeyedServiceFactory {
+class WarningBadgeServiceFactory : public BrowserContextKeyedServiceFactory {
public:
- static ExtensionWarningBadgeService* GetForBrowserContext(
+ static WarningBadgeService* GetForBrowserContext(
content::BrowserContext* context);
- static ExtensionWarningBadgeServiceFactory* GetInstance();
+ static WarningBadgeServiceFactory* GetInstance();
private:
- friend struct DefaultSingletonTraits<ExtensionWarningBadgeServiceFactory>;
+ friend struct DefaultSingletonTraits<WarningBadgeServiceFactory>;
- ExtensionWarningBadgeServiceFactory();
- ~ExtensionWarningBadgeServiceFactory() override;
+ WarningBadgeServiceFactory();
+ ~WarningBadgeServiceFactory() override;
// BrowserContextKeyedServiceFactory implementation
KeyedService* BuildServiceInstanceFor(
@@ -32,7 +31,7 @@ class ExtensionWarningBadgeServiceFactory
content::BrowserContext* context) const override;
bool ServiceIsCreatedWithBrowserContext() const override;
- DISALLOW_COPY_AND_ASSIGN(ExtensionWarningBadgeServiceFactory);
+ DISALLOW_COPY_AND_ASSIGN(WarningBadgeServiceFactory);
};
} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/warning_badge_service.cc ('k') | chrome/browser/extensions/warning_badge_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698