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

Unified Diff: chrome/browser/ui/find_bar/find_bar_host_browsertest.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/find_bar/find_bar_host_browsertest.cc
diff --git a/chrome/browser/ui/find_bar/find_bar_host_browsertest.cc b/chrome/browser/ui/find_bar/find_bar_host_browsertest.cc
index 07b04aa41e8501e4c6aab3b2d6a0c4f969f14472..7007f872bfc3ee7012e3f94790c124702ec97d93 100644
--- a/chrome/browser/ui/find_bar/find_bar_host_browsertest.cc
+++ b/chrome/browser/ui/find_bar/find_bar_host_browsertest.cc
@@ -187,10 +187,11 @@ class FindInPageControllerTest : public InProcessBrowserTest {
}
void FlushHistoryService() {
- HistoryServiceFactory::GetForProfile(
- browser()->profile(), Profile::IMPLICIT_ACCESS)->FlushForTest(
- base::Bind(&base::MessageLoop::Quit,
- base::Unretained(base::MessageLoop::current()->current())));
+ HistoryServiceFactory::GetForProfile(browser()->profile(),
+ ServiceAccessType::IMPLICIT_ACCESS)
+ ->FlushForTest(base::Bind(
+ &base::MessageLoop::Quit,
+ base::Unretained(base::MessageLoop::current()->current())));
content::RunMessageLoop();
}
};

Powered by Google App Engine
This is Rietveld 408576698