| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/importer/firefox_importer_utils.h" | 5 #include "chrome/browser/importer/firefox_importer_utils.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
| 10 #include <shlobj.h> | 10 #include <shlobj.h> |
| 11 #endif | 11 #endif |
| 12 | 12 |
| 13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
| 16 #include "base/sys_string_conversions.h" | 16 #include "base/sys_string_conversions.h" |
| 17 #include "base/time.h" | |
| 18 #include "chrome/browser/search_engines/template_url.h" | 17 #include "chrome/browser/search_engines/template_url.h" |
| 19 #include "chrome/browser/search_engines/template_url_model.h" | 18 #include "chrome/browser/search_engines/template_url_model.h" |
| 20 #include "chrome/browser/search_engines/template_url_parser.h" | 19 #include "chrome/browser/search_engines/template_url_parser.h" |
| 21 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
| 22 #include "net/base/base64.h" | 21 #include "net/base/base64.h" |
| 23 | 22 |
| 24 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 25 #include "base/registry.h" | 24 #include "base/registry.h" |
| 26 #include "chrome/common/win_util.h" | 25 #include "chrome/common/win_util.h" |
| 27 #endif | 26 #endif |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 } | 768 } |
| 770 // Version 3 has an extra line for further use. | 769 // Version 3 has an extra line for further use. |
| 771 if (version == 3) { | 770 if (version == 3) { |
| 772 ++begin; | 771 ++begin; |
| 773 } | 772 } |
| 774 | 773 |
| 775 forms->push_back(form); | 774 forms->push_back(form); |
| 776 } | 775 } |
| 777 } | 776 } |
| 778 } | 777 } |
| OLD | NEW |