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

Side by Side Diff: components/autofill/browser/autocheckout/whitelist_manager.cc

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/autofill/autocheckout/whitelist_manager.h" 5 #include "components/autofill/browser/autocheckout/whitelist_manager.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/strings/string_split.h" 11 #include "base/strings/string_split.h"
12 #include "components/autofill/common/autofill_switches.h" 12 #include "components/autofill/common/autofill_switches.h"
13 #include "content/public/browser/browser_context.h" 13 #include "content/public/browser/browser_context.h"
14 #include "googleurl/src/gurl.h" 14 #include "googleurl/src/gurl.h"
15 #include "net/base/load_flags.h" 15 #include "net/base/load_flags.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 if (!fields[0].empty()) 149 if (!fields[0].empty())
150 new_url_prefixes.push_back(fields[0]); 150 new_url_prefixes.push_back(fields[0]);
151 } 151 }
152 } 152 }
153 url_prefixes_ = new_url_prefixes; 153 url_prefixes_ = new_url_prefixes;
154 } 154 }
155 155
156 } // namespace autocheckout 156 } // namespace autocheckout
157 } // namespace autofill 157 } // namespace autofill
158 158
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698