| Index: chrome/browser/autocomplete/autocomplete_edit_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/autocomplete/autocomplete_edit_unittest.cc (revision 119905)
|
| +++ chrome/browser/autocomplete/autocomplete_edit_unittest.cc (working copy)
|
| @@ -35,7 +35,9 @@
|
| const string16& display_text,
|
| bool update_popup) OVERRIDE {}
|
| virtual void SetWindowTextAndCaretPos(const string16& text,
|
| - size_t caret_pos) OVERRIDE {}
|
| + size_t caret_pos,
|
| + bool update_popup,
|
| + bool notify_text_changed) OVERRIDE {}
|
| virtual void SetForcedQuery() OVERRIDE {}
|
| virtual bool IsSelectAll() OVERRIDE { return false; }
|
| virtual bool DeleteAtEndPressed() OVERRIDE { return false; }
|
| @@ -155,9 +157,9 @@
|
| TestingOmniboxView view;
|
| TestingAutocompleteEditController controller;
|
| TestingProfile profile;
|
| + profile.CreateTemplateURLService();
|
| + profile.CreateAutocompleteClassifier();
|
| AutocompleteEditModel model(&view, &controller, &profile);
|
| - profile.CreateAutocompleteClassifier();
|
| - profile.CreateTemplateURLService();
|
|
|
| for (size_t i = 0; i < ARRAYSIZE_UNSAFE(input); ++i) {
|
| model.UpdatePermanentText(ASCIIToUTF16(input[i].perm_text));
|
|
|