Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: components/autofill/browser/autocomplete_history_manager_unittest.cc

Issue 13488009: Remove application locale cache in autofill code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
8 #include "base/prefs/testing_pref_service.h" 8 #include "base/prefs/testing_pref_service.h"
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 243
244 } // namespace 244 } // namespace
245 245
246 // Make sure our external delegate is called at the right time. 246 // Make sure our external delegate is called at the right time.
247 TEST_F(AutocompleteHistoryManagerTest, ExternalDelegate) { 247 TEST_F(AutocompleteHistoryManagerTest, ExternalDelegate) {
248 // Local version with a stubbed out Send() 248 // Local version with a stubbed out Send()
249 AutocompleteHistoryManagerStubSend autocomplete_history_manager( 249 AutocompleteHistoryManagerStubSend autocomplete_history_manager(
250 web_contents()); 250 web_contents());
251 251
252 AutofillManager::CreateForWebContentsAndDelegate( 252 AutofillManager::CreateForWebContentsAndDelegate(
253 web_contents(), &manager_delegate); 253 web_contents(), &manager_delegate, "en-US");
254 254
255 MockAutofillExternalDelegate external_delegate(web_contents()); 255 MockAutofillExternalDelegate external_delegate(web_contents());
256 autocomplete_history_manager.SetExternalDelegate(&external_delegate); 256 autocomplete_history_manager.SetExternalDelegate(&external_delegate);
257 257
258 // Should trigger a call to OnSuggestionsReturned, verified by the mock. 258 // Should trigger a call to OnSuggestionsReturned, verified by the mock.
259 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _)); 259 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _));
260 autocomplete_history_manager.SendSuggestions(NULL); 260 autocomplete_history_manager.SendSuggestions(NULL);
261 } 261 }
OLDNEW
« no previous file with comments | « components/autofill/browser/autocheckout_manager.cc ('k') | components/autofill/browser/autofill_country.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698