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

Unified Diff: chrome/browser/spellchecker/spellcheck_service.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_service.h
===================================================================
--- chrome/browser/spellchecker/spellcheck_service.h (revision 223601)
+++ chrome/browser/spellchecker/spellcheck_service.h (working copy)
@@ -18,7 +18,7 @@
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
-class Profile;
+class PrefService;
class SpellCheckHostMetrics;
namespace base {
@@ -27,6 +27,7 @@
namespace content {
class RenderProcessHost;
+class BrowserContext;
}
// Encapsulates the browser side spellcheck service. There is one of these per
@@ -51,7 +52,7 @@
DICT_UNKNOWN,
};
- explicit SpellcheckService(Profile* profile);
+ explicit SpellcheckService(content::BrowserContext* context);
virtual ~SpellcheckService();
// This function computes a vector of strings which are to be displayed in
@@ -59,7 +60,7 @@
// returns the index of the current spell check language in the vector.
// TODO(port): this should take a vector of string16, but the implementation
// has some dependencies in l10n util that need porting first.
- static int GetSpellCheckLanguages(Profile* profile,
+ static int GetSpellCheckLanguages(content::BrowserContext* context,
std::vector<std::string>* languages);
// Computes a vector of strings which are to be displayed in the context
@@ -149,8 +150,8 @@
PrefChangeRegistrar pref_change_registrar_;
content::NotificationRegistrar registrar_;
- // A pointer to the profile which this service refers to.
- Profile* profile_;
+ // A pointer to the BrowserContext which this service refers to.
+ content::BrowserContext* context_;
scoped_ptr<SpellCheckHostMetrics> metrics_;
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter_mac.cc ('k') | chrome/browser/spellchecker/spellcheck_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698