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

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

Issue 17084005: In components/autofill, move common/ to shared/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase to fix conflict Created 7 years, 6 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
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 "components/autofill/browser/autocomplete_history_manager.h" 5 #include "components/autofill/browser/autocomplete_history_manager.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/prefs/pref_service.h" 9 #include "base/prefs/pref_service.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "components/autofill/browser/autofill_external_delegate.h" 12 #include "components/autofill/browser/autofill_external_delegate.h"
13 #include "components/autofill/browser/validation.h" 13 #include "components/autofill/browser/validation.h"
14 #include "components/autofill/common/autofill_messages.h" 14 #include "components/autofill/shared/autofill_messages.h"
15 #include "components/autofill/common/autofill_pref_names.h" 15 #include "components/autofill/shared/autofill_pref_names.h"
16 #include "components/autofill/common/form_data.h" 16 #include "components/autofill/shared/form_data.h"
17 #include "components/user_prefs/user_prefs.h" 17 #include "components/user_prefs/user_prefs.h"
18 #include "content/public/browser/browser_context.h" 18 #include "content/public/browser/browser_context.h"
19 #include "content/public/browser/render_view_host.h" 19 #include "content/public/browser/render_view_host.h"
20 #include "content/public/browser/web_contents.h" 20 #include "content/public/browser/web_contents.h"
21 21
22 using content::BrowserContext; 22 using content::BrowserContext;
23 using content::WebContents; 23 using content::WebContents;
24 24
25 namespace autofill { 25 namespace autofill {
26 namespace { 26 namespace {
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 } 216 }
217 217
218 query_id_ = 0; 218 query_id_ = 0;
219 autofill_values_.clear(); 219 autofill_values_.clear();
220 autofill_labels_.clear(); 220 autofill_labels_.clear();
221 autofill_icons_.clear(); 221 autofill_icons_.clear();
222 autofill_unique_ids_.clear(); 222 autofill_unique_ids_.clear();
223 } 223 }
224 224
225 } // namespace autofill 225 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698