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

Unified Diff: chrome/browser/spellchecker/spelling_service_client.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/spelling_service_client.h
===================================================================
--- chrome/browser/spellchecker/spelling_service_client.h (revision 223601)
+++ chrome/browser/spellchecker/spelling_service_client.h (working copy)
@@ -16,10 +16,13 @@
#include "net/url_request/url_fetcher_delegate.h"
class GURL;
-class Profile;
class TextCheckClientDelegate;
struct SpellCheckResult;
+namespace content {
+class BrowserContext;
+}
+
namespace net {
class URLFetcher;
} // namespace net
@@ -44,9 +47,9 @@
// ...
// }
//
-// void MyTextCheck(Profile* profile, const string16& text) {
+// void MyTextCheck(BrowserContext* context, const string16& text) {
// client_.reset(new SpellingServiceClient);
-// client_->RequestTextCheck(profile, 0, text,
+// client_->RequestTextCheck(context, 0, text,
// base::Bind(&MyClient::OnTextCheckComplete,
// base::Unretained(this));
// }
@@ -79,13 +82,13 @@
// to the Spelling service successfully, this function returns true. (This
// does not mean the service finishes checking text successfully.) We will
// call |callback| when we receive a text-check response from the service.
- bool RequestTextCheck(Profile* profile,
+ bool RequestTextCheck(content::BrowserContext* context,
ServiceType type,
const string16& text,
const TextCheckCompleteCallback& callback);
- // Returns whether the specified service is available for the given profile.
- static bool IsAvailable(Profile* profile, ServiceType type);
+ // Returns whether the specified service is available for the given context.
+ static bool IsAvailable(content::BrowserContext* context, ServiceType type);
protected:
// Parses a JSON-RPC response from the Spelling service.
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_service_browsertest.cc ('k') | chrome/browser/spellchecker/spelling_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698