| 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 11 #include "chrome/common/chrome_constants.h" | 12 #include "chrome/common/chrome_constants.h" |
| 12 #include "components/history/core/browser/android/urls_sql_handler.h" | 13 #include "components/history/core/browser/android/urls_sql_handler.h" |
| 13 #include "components/history/core/browser/android/visit_sql_handler.h" | 14 #include "components/history/core/browser/android/visit_sql_handler.h" |
| 14 #include "components/history/core/browser/history_constants.h" | 15 #include "components/history/core/browser/history_constants.h" |
| 15 #include "components/history/core/browser/history_database.h" | 16 #include "components/history/core/browser/history_database.h" |
| 16 #include "components/history/core/test/test_history_database.h" | 17 #include "components/history/core/test/test_history_database.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 19 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 | 294 |
| 294 TableIDRow id; | 295 TableIDRow id; |
| 295 id.url_id = url_row.id(); | 296 id.url_id = url_row.id(); |
| 296 TableIDRows ids; | 297 TableIDRows ids; |
| 297 ids.push_back(id); | 298 ids.push_back(id); |
| 298 ASSERT_TRUE(urls_sql_handler_.Delete(ids)); | 299 ASSERT_TRUE(urls_sql_handler_.Delete(ids)); |
| 299 EXPECT_FALSE(history_db_.GetURLRow(row.url_id(), &url_row)); | 300 EXPECT_FALSE(history_db_.GetURLRow(row.url_id(), &url_row)); |
| 300 } | 301 } |
| 301 | 302 |
| 302 } // namespace history | 303 } // namespace history |
| OLD | NEW |