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/history/android/bookmark_model_sql_handler.h" | 5 #include "chrome/browser/history/android/bookmark_model_sql_handler.h" |
6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" |
7 #include "base/synchronization/waitable_event.h" | 8 #include "base/synchronization/waitable_event.h" |
8 #include "base/utf_string_conversions.h" | |
9 #include "chrome/browser/bookmarks/bookmark_model.h" | 9 #include "chrome/browser/bookmarks/bookmark_model.h" |
10 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 10 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
11 #include "chrome/browser/history/history_database.h" | 11 #include "chrome/browser/history/history_database.h" |
12 #include "chrome/browser/profiles/profile_manager.h" | 12 #include "chrome/browser/profiles/profile_manager.h" |
13 #include "chrome/common/chrome_constants.h" | 13 #include "chrome/common/chrome_constants.h" |
14 #include "chrome/test/base/testing_browser_process.h" | 14 #include "chrome/test/base/testing_browser_process.h" |
15 #include "chrome/test/base/testing_profile.h" | 15 #include "chrome/test/base/testing_profile.h" |
16 #include "chrome/test/base/testing_profile_manager.h" | 16 #include "chrome/test/base/testing_profile_manager.h" |
17 #include "chrome/test/base/ui_test_utils.h" | 17 #include "chrome/test/base/ui_test_utils.h" |
18 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 id_row.url = url1; | 243 id_row.url = url1; |
244 id_rows.clear(); | 244 id_rows.clear(); |
245 id_rows.push_back(id_row); | 245 id_rows.push_back(id_row); |
246 ASSERT_TRUE(handler.Delete(id_rows)); | 246 ASSERT_TRUE(handler.Delete(id_rows)); |
247 RunMessageLoopForUI(); | 247 RunMessageLoopForUI(); |
248 // All bookmarks were deleted. | 248 // All bookmarks were deleted. |
249 EXPECT_FALSE(bookmark_model_->HasBookmarks()); | 249 EXPECT_FALSE(bookmark_model_->HasBookmarks()); |
250 } | 250 } |
251 | 251 |
252 } // namespace history | 252 } // namespace history |
OLD | NEW |