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

Unified Diff: chrome/browser/extensions/api/spellcheck/spellcheck_api.h

Issue 178193030: Rename ProfileKeyedAPI to BrowserContextKeyedAPI and GetProfile to Get. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 6 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/api/spellcheck/spellcheck_api.h
diff --git a/chrome/browser/extensions/api/spellcheck/spellcheck_api.h b/chrome/browser/extensions/api/spellcheck/spellcheck_api.h
index 0d9f5b7d54c39d1d0897c3a9464b972cfe36ebbf..c75378a6f7a3ea70ac228d40f44d3558c013944f 100644
--- a/chrome/browser/extensions/api/spellcheck/spellcheck_api.h
+++ b/chrome/browser/extensions/api/spellcheck/spellcheck_api.h
@@ -5,32 +5,32 @@
#ifndef CHROME_BROWSER_EXTENSIONS_API_SPELLCHECK_SPELLCHECK_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_SPELLCHECK_SPELLCHECK_API_H_
-#include "chrome/browser/extensions/api/profile_keyed_api_factory.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
+#include "extensions/browser/browser_context_keyed_api_factory.h"
class Profile;
namespace extensions {
-class SpellcheckAPI : public ProfileKeyedAPI,
+class SpellcheckAPI : public BrowserContextKeyedAPI,
public content::NotificationObserver {
public:
explicit SpellcheckAPI(content::BrowserContext* context);
virtual ~SpellcheckAPI();
- // ProfileKeyedAPI implementation.
- static ProfileKeyedAPIFactory<SpellcheckAPI>* GetFactoryInstance();
+ // BrowserContextKeyedAPI implementation.
+ static BrowserContextKeyedAPIFactory<SpellcheckAPI>* GetFactoryInstance();
private:
- friend class ProfileKeyedAPIFactory<SpellcheckAPI>;
+ friend class BrowserContextKeyedAPIFactory<SpellcheckAPI>;
// content::NotificationDelegate implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
- // ProfileKeyedAPI implementation.
+ // BrowserContextKeyedAPI implementation.
static const char* service_name() {
return "SpellcheckAPI";
}
@@ -41,7 +41,7 @@ class SpellcheckAPI : public ProfileKeyedAPI,
};
template <>
-void ProfileKeyedAPIFactory<SpellcheckAPI>::DeclareFactoryDependencies();
+void BrowserContextKeyedAPIFactory<SpellcheckAPI>::DeclareFactoryDependencies();
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698