OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/message_loop.h" |
5 #include "base/string16.h" | 6 #include "base/string16.h" |
6 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
7 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
8 #include "chrome/browser/search_engines/template_url.h" | 9 #include "chrome/browser/search_engines/template_url.h" |
9 #include "chrome/browser/search_engines/template_url_service.h" | 10 #include "chrome/browser/search_engines/template_url_service.h" |
10 #include "chrome/browser/search_engines/template_url_service_factory.h" | 11 #include "chrome/browser/search_engines/template_url_service_factory.h" |
11 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" | 12 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" |
12 #include "chrome/browser/ui/search_engines/template_url_table_model.h" | 13 #include "chrome/browser/ui/search_engines/template_url_table_model.h" |
13 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/common/chrome_notification_types.h" |
14 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 turl->set_short_name(ASCIIToUTF16("b")); | 252 turl->set_short_name(ASCIIToUTF16("b")); |
252 model_->Add(turl); | 253 model_->Add(turl); |
253 | 254 |
254 // Table model should have updated. | 255 // Table model should have updated. |
255 VerifyChangeCount(1, 0, 0, 0); | 256 VerifyChangeCount(1, 0, 0, 0); |
256 | 257 |
257 // And should contain the newly added TemplateURL. | 258 // And should contain the newly added TemplateURL. |
258 ASSERT_EQ(1, table_model()->RowCount()); | 259 ASSERT_EQ(1, table_model()->RowCount()); |
259 ASSERT_EQ(0, table_model()->IndexOfTemplateURL(turl)); | 260 ASSERT_EQ(0, table_model()->IndexOfTemplateURL(turl)); |
260 } | 261 } |
OLD | NEW |