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

Side by Side Diff: chrome/browser/autocomplete_history_manager.cc

Issue 3058027: Add #include utf_string_conversions.h to all files that use ASCIIToWide and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/autocomplete_history_manager.h" 5 #include "chrome/browser/autocomplete_history_manager.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
11 #include "base/utf_string_conversions.h"
11 #include "chrome/browser/autofill/credit_card.h" 12 #include "chrome/browser/autofill/credit_card.h"
12 #include "chrome/browser/pref_service.h" 13 #include "chrome/browser/pref_service.h"
13 #include "chrome/browser/profile.h" 14 #include "chrome/browser/profile.h"
14 #include "chrome/browser/renderer_host/render_view_host.h" 15 #include "chrome/browser/renderer_host/render_view_host.h"
15 #include "chrome/browser/tab_contents/tab_contents.h" 16 #include "chrome/browser/tab_contents/tab_contents.h"
16 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
17 #include "webkit/glue/form_data.h" 18 #include "webkit/glue/form_data.h"
18 19
19 using webkit_glue::FormData; 20 using webkit_glue::FormData;
20 21
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 DCHECK(result->GetType() == AUTOFILL_VALUE_RESULT); 181 DCHECK(result->GetType() == AUTOFILL_VALUE_RESULT);
181 const WDResult<std::vector<string16> >* autofill_result = 182 const WDResult<std::vector<string16> >* autofill_result =
182 static_cast<const WDResult<std::vector<string16> >*>(result); 183 static_cast<const WDResult<std::vector<string16> >*>(result);
183 host->AutocompleteSuggestionsReturned( 184 host->AutocompleteSuggestionsReturned(
184 query_id_, autofill_result->GetValue()); 185 query_id_, autofill_result->GetValue());
185 } else { 186 } else {
186 host->AutocompleteSuggestionsReturned( 187 host->AutocompleteSuggestionsReturned(
187 query_id_, std::vector<string16>()); 188 query_id_, std::vector<string16>());
188 } 189 }
189 } 190 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_browsertest.cc ('k') | chrome/browser/autocomplete_history_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698