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

Unified Diff: chrome/browser/ui/search/instant_extended_interactive_uitest.cc

Issue 839193002: Move ServiceAccessType into //components/keyed_service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on android Created 5 years, 11 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/ui/search/instant_extended_interactive_uitest.cc
diff --git a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
index dd398dc57f4ff40c5685663adba661b39e56a2a8..8b0f37f74391d0a8c5d098788ac876c0d4ae9b9d 100644
--- a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
+++ b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
@@ -202,7 +202,7 @@ class InstantExtendedTest : public InProcessBrowserTest,
return false;
HistoryService* history = HistoryServiceFactory::GetForProfile(
- browser()->profile(), Profile::EXPLICIT_ACCESS);
+ browser()->profile(), ServiceAccessType::EXPLICIT_ACCESS);
GURL search(template_url->url_ref().ReplaceSearchTerms(
TemplateURLRef::SearchTermsArgs(term),
TemplateURLServiceFactory::GetForProfile(
@@ -217,7 +217,7 @@ class InstantExtendedTest : public InProcessBrowserTest,
void BlockUntilHistoryProcessesPendingRequests() {
HistoryService* history = HistoryServiceFactory::GetForProfile(
- browser()->profile(), Profile::EXPLICIT_ACCESS);
+ browser()->profile(), ServiceAccessType::EXPLICIT_ACCESS);
DCHECK(history);
DCHECK(base::MessageLoop::current());

Powered by Google App Engine
This is Rietveld 408576698