OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/search_engines/template_url_service_test_util.h" | 5 #include "chrome/browser/search_engines/template_url_service_test_util.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
11 #include "base/synchronization/waitable_event.h" | 11 #include "base/synchronization/waitable_event.h" |
12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
13 #include "chrome/browser/search_engines/search_terms_data.h" | 13 #include "chrome/browser/search_engines/search_terms_data.h" |
14 #include "chrome/browser/search_engines/template_url_service.h" | 14 #include "chrome/browser/search_engines/template_url_service.h" |
15 #include "chrome/browser/search_engines/template_url_service_factory.h" | 15 #include "chrome/browser/search_engines/template_url_service_factory.h" |
16 #include "chrome/browser/webdata/web_data_service_factory.h" | 16 #include "chrome/browser/webdata/web_data_service_factory.h" |
17 #include "chrome/common/chrome_notification_types.h" | 17 #include "chrome/common/chrome_notification_types.h" |
18 #include "chrome/common/pref_names.h" | 18 #include "chrome/common/pref_names.h" |
19 #include "chrome/test/base/testing_pref_service.h" | 19 #include "chrome/test/base/testing_pref_service.h" |
20 #include "chrome/test/base/testing_profile.h" | 20 #include "chrome/test/base/testing_profile.h" |
21 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
22 #include "content/test/test_browser_thread.h" | 22 #include "content/public/test/test_browser_thread.h" |
23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
24 | 24 |
25 using content::BrowserThread; | 25 using content::BrowserThread; |
26 | 26 |
27 namespace { | 27 namespace { |
28 | 28 |
29 // A callback used to coordinate when the database has finished processing | 29 // A callback used to coordinate when the database has finished processing |
30 // requests. See note in BlockTillServiceProcessesRequests for details. | 30 // requests. See note in BlockTillServiceProcessesRequests for details. |
31 // | 31 // |
32 // Schedules a QuitClosure on the message loop it was created with. | 32 // Schedules a QuitClosure on the message loop it was created with. |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 return profile_.get(); | 303 return profile_.get(); |
304 } | 304 } |
305 | 305 |
306 void TemplateURLServiceTestUtil::StartIOThread() { | 306 void TemplateURLServiceTestUtil::StartIOThread() { |
307 profile_->StartIOThread(); | 307 profile_->StartIOThread(); |
308 } | 308 } |
309 | 309 |
310 void TemplateURLServiceTestUtil::PumpLoop() { | 310 void TemplateURLServiceTestUtil::PumpLoop() { |
311 message_loop_.RunAllPending(); | 311 message_loop_.RunAllPending(); |
312 } | 312 } |
OLD | NEW |