| 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 <string> | 5 #include <string> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/stl_util.h" | |
| 11 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 13 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 14 #include "components/search_engines/keyword_table.h" | 13 #include "components/search_engines/keyword_table.h" |
| 15 #include "components/search_engines/template_url_data.h" | 14 #include "components/search_engines/template_url_data.h" |
| 16 #include "components/webdata/common/web_database.h" | 15 #include "components/webdata/common/web_database.h" |
| 17 #include "sql/statement.h" | 16 #include "sql/statement.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 19 | 18 |
| 20 using base::ASCIIToUTF16; | 19 using base::ASCIIToUTF16; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 keyword.id = 2000; | 247 keyword.id = 2000; |
| 249 AddKeyword(keyword); | 248 AddKeyword(keyword); |
| 250 KeywordTable::Keywords keywords(GetKeywords()); | 249 KeywordTable::Keywords keywords(GetKeywords()); |
| 251 EXPECT_EQ(1U, keywords.size()); | 250 EXPECT_EQ(1U, keywords.size()); |
| 252 const TemplateURLData& keyword_from_database = keywords.front(); | 251 const TemplateURLData& keyword_from_database = keywords.front(); |
| 253 EXPECT_EQ(keyword.id, keyword_from_database.id); | 252 EXPECT_EQ(keyword.id, keyword_from_database.id); |
| 254 EXPECT_EQ(ASCIIToUTF16("bogus name"), keyword_from_database.short_name()); | 253 EXPECT_EQ(ASCIIToUTF16("bogus name"), keyword_from_database.short_name()); |
| 255 RemoveKeyword(keyword.id); | 254 RemoveKeyword(keyword.id); |
| 256 } | 255 } |
| 257 } | 256 } |
| OLD | NEW |