blob: 76fc37aad87a2338862df8f3f3d261306d73b4bf [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/base/search_test_utils.h"
#include "base/memory/ref_counted.h"
#include "components/search_engines/template_url_service.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace search_test_utils {
void WaitForTemplateURLServiceToLoad(TemplateURLService* service) {
if (service->loaded())
return;
scoped_refptr<content::MessageLoopRunner> message_loop_runner =
new content::MessageLoopRunner;
std::unique_ptr<TemplateURLService::Subscription> subscription =
service->RegisterOnLoadedCallback(message_loop_runner->QuitClosure());
service->Load();
message_loop_runner->Run();
ASSERT_TRUE(service->loaded());
}
} // namespace search_test_utils