OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/extensions/extension_browsertest.h" | 9 #include "chrome/browser/extensions/extension_browsertest.h" |
10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 EXPECT_FALSE(observed_result_); | 198 EXPECT_FALSE(observed_result_); |
199 model->search_box()->SetText(base::ASCIIToUTF16("minimal")); | 199 model->search_box()->SetText(base::ASCIIToUTF16("minimal")); |
200 EXPECT_TRUE(observed_result_); | 200 EXPECT_TRUE(observed_result_); |
201 | 201 |
202 // Ensure the UI is updated. This is via PostTask in views. | 202 // Ensure the UI is updated. This is via PostTask in views. |
203 base::RunLoop().RunUntilIdle(); | 203 base::RunLoop().RunUntilIdle(); |
204 | 204 |
205 // Now uninstall and ensure this browser test observes it. | 205 // Now uninstall and ensure this browser test observes it. |
206 UninstallExtension(extension->id()); | 206 UninstallExtension(extension->id()); |
207 | 207 |
| 208 // Allow async AppSearchProvider::UpdateResults to run. |
| 209 base::RunLoop().RunUntilIdle(); |
| 210 |
208 EXPECT_FALSE(observed_result_); | 211 EXPECT_FALSE(observed_result_); |
209 StopWatchingResults(); | 212 StopWatchingResults(); |
210 service->DismissAppList(); | 213 service->DismissAppList(); |
211 } | 214 } |
OLD | NEW |