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

Unified Diff: chrome/browser/spellchecker/spellcheck_message_filter_mac.cc

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_message_filter_mac.cc
===================================================================
--- chrome/browser/spellchecker/spellcheck_message_filter_mac.cc (revision 223601)
+++ chrome/browser/spellchecker/spellcheck_message_filter_mac.cc (working copy)
@@ -9,16 +9,17 @@
#include "base/barrier_closure.h"
#include "base/bind.h"
-#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/spellchecker/spellcheck_factory.h"
#include "chrome/browser/spellchecker/spellcheck_platform_mac.h"
#include "chrome/browser/spellchecker/spellcheck_service.h"
#include "chrome/browser/spellchecker/spelling_service_client.h"
#include "chrome/common/spellcheck_messages.h"
#include "chrome/common/spellcheck_result.h"
+#include "content/public/browser/browser_context.h"
#include "content/public/browser/render_process_host.h"
using content::BrowserThread;
+using content::BrowserContext;
namespace {
@@ -112,14 +113,14 @@
}
void SpellingRequest::RequestRemoteCheck(const string16& text) {
- Profile* profile = NULL;
+ BrowserContext* context = NULL;
content::RenderProcessHost* host =
content::RenderProcessHost::FromID(render_process_id_);
if (host)
- profile = Profile::FromBrowserContext(host->GetBrowserContext());
+ context = host->GetBrowserContext();
client_->RequestTextCheck(
- profile,
+ context,
SpellingServiceClient::SPELLCHECK,
text,
base::Bind(&SpellingRequest::OnRemoteCheckCompleted,
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter.cc ('k') | chrome/browser/spellchecker/spellcheck_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698