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

Unified Diff: chrome/browser/spellchecker/spellcheck_service_browsertest.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_service_browsertest.cc
===================================================================
--- chrome/browser/spellchecker/spellcheck_service_browsertest.cc (revision 223601)
+++ chrome/browser/spellchecker/spellcheck_service_browsertest.cc (working copy)
@@ -14,6 +14,8 @@
#include "chrome/test/base/ui_test_utils.h"
#include "url/gurl.h"
+using content::BrowserContext;
+
namespace {
// A corrupted BDICT data used in DeleteCorruptedBDICT. Please do not use this
@@ -58,18 +60,22 @@
base::WaitableEvent event(true, false);
SpellcheckService::AttachStatusEvent(&event);
+ BrowserContext * context = static_cast<BrowserContext*>(GetProfile());
+
// Ensure that the SpellcheckService object does not already exist. Otherwise
// the next line will not force creation of the SpellcheckService and the
// test will fail.
- SpellcheckService* service =
- SpellcheckServiceFactory::GetForProfileWithoutCreating(GetProfile());
+ SpellcheckService* service = static_cast<SpellcheckService*>(
+ SpellcheckServiceFactory::GetInstance()->GetServiceForBrowserContext(
+ context,
+ false));
ASSERT_EQ(NULL, service);
// Getting the spellcheck_service will initialize the SpellcheckService
// object with the corrupted BDICT file created above since the hunspell
// dictionary is loaded in the SpellcheckService constructor right now.
// The SpellCheckHost object will send a BDICT_CORRUPTED event.
- SpellcheckServiceFactory::GetForProfile(GetProfile());
+ SpellcheckServiceFactory::GetForContext(context);
// Check the received event. Also we check if Chrome has successfully deleted
// the corrupted dictionary. We delete the corrupted dictionary to avoid
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_service.cc ('k') | chrome/browser/spellchecker/spelling_service_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698