| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |