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

Unified Diff: chrome/browser/spellchecker/spellcheck_factory.h

Issue 23868013: Refactor dependency on Profile to BrowserContext in spell check. (Closed) Base URL: http://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 3 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/spellchecker/spellcheck_factory.h
===================================================================
--- chrome/browser/spellchecker/spellcheck_factory.h (revision 223601)
+++ chrome/browser/spellchecker/spellcheck_factory.h (working copy)
@@ -6,26 +6,23 @@
#define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_FACTORY_H_
#include "base/basictypes.h"
+#include "base/gtest_prod_util.h"
#include "base/memory/singleton.h"
#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
class SpellcheckService;
-class Profile;
// Entry into the SpellCheck system.
//
// Internally, this owns all SpellcheckService objects.
class SpellcheckServiceFactory : public BrowserContextKeyedServiceFactory {
public:
- // Returns the spell check host. This will create the SpellcheckService if it
- // does not already exist.
- static SpellcheckService* GetForProfile(Profile* profile);
+ // Returns the spell check host. This will create the SpellcheckService
+ // if it does not already exist. This can return NULL.
+ static SpellcheckService* GetForContext(content::BrowserContext* context);
static SpellcheckService* GetForRenderProcessId(int render_process_id);
- // Returns the spell check host. This can return NULL.
- static SpellcheckService* GetForProfileWithoutCreating(Profile* profile);
-
static SpellcheckServiceFactory* GetInstance();
private:
@@ -43,6 +40,8 @@
content::BrowserContext* context) const OVERRIDE;
virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
+ FRIEND_TEST_ALL_PREFIXES(SpellcheckServiceBrowserTest, DeleteCorruptedBDICT);
+
DISALLOW_COPY_AND_ASSIGN(SpellcheckServiceFactory);
};

Powered by Google App Engine
This is Rietveld 408576698