| OLD | NEW |
| 1 // Copyright (c) 2010 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/chromeos/dom_ui/sync_options_handler.h" | 5 #include "chrome/browser/dom_ui/sync_options_handler.h" |
| 6 | 6 |
| 7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
| 8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/i18n/time_formatting.h" | 11 #include "base/i18n/time_formatting.h" |
| 12 #include "base/stl_util-inl.h" | 12 #include "base/stl_util-inl.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 40 l10n_util::GetString(IDS_SYNC_DATATYPE_TYPED_URLS)); | 40 l10n_util::GetString(IDS_SYNC_DATATYPE_TYPED_URLS)); |
| 41 localized_strings->SetString(L"syncpasswords", | 41 localized_strings->SetString(L"syncpasswords", |
| 42 l10n_util::GetString(IDS_SYNC_DATATYPE_PASSWORDS)); | 42 l10n_util::GetString(IDS_SYNC_DATATYPE_PASSWORDS)); |
| 43 localized_strings->SetString(L"syncextensions", | 43 localized_strings->SetString(L"syncextensions", |
| 44 l10n_util::GetString(IDS_SYNC_DATATYPE_EXTENSIONS)); | 44 l10n_util::GetString(IDS_SYNC_DATATYPE_EXTENSIONS)); |
| 45 localized_strings->SetString(L"syncautofill", | 45 localized_strings->SetString(L"syncautofill", |
| 46 l10n_util::GetString(IDS_SYNC_DATATYPE_AUTOFILL)); | 46 l10n_util::GetString(IDS_SYNC_DATATYPE_AUTOFILL)); |
| 47 localized_strings->SetString(L"syncthemes", | 47 localized_strings->SetString(L"syncthemes", |
| 48 l10n_util::GetString(IDS_SYNC_DATATYPE_THEMES)); | 48 l10n_util::GetString(IDS_SYNC_DATATYPE_THEMES)); |
| 49 } | 49 } |
| OLD | NEW |