| 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/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" | |
| 9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 10 #include "base/callback.h" | 9 #include "base/callback.h" |
| 11 #include "base/i18n/time_formatting.h" | 10 #include "base/i18n/time_formatting.h" |
| 12 #include "base/stl_util-inl.h" | 11 #include "base/stl_util-inl.h" |
| 13 #include "base/time.h" | 12 #include "base/time.h" |
| 14 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 15 #include "base/values.h" | 14 #include "base/values.h" |
| 16 #include "chrome/common/notification_service.h" | 15 #include "chrome/common/notification_service.h" |
| 17 #include "grit/browser_resources.h" | 16 #include "grit/browser_resources.h" |
| 18 #include "grit/chromium_strings.h" | 17 #include "grit/chromium_strings.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 40 l10n_util::GetString(IDS_SYNC_DATATYPE_TYPED_URLS)); | 39 l10n_util::GetString(IDS_SYNC_DATATYPE_TYPED_URLS)); |
| 41 localized_strings->SetString(L"syncpasswords", | 40 localized_strings->SetString(L"syncpasswords", |
| 42 l10n_util::GetString(IDS_SYNC_DATATYPE_PASSWORDS)); | 41 l10n_util::GetString(IDS_SYNC_DATATYPE_PASSWORDS)); |
| 43 localized_strings->SetString(L"syncextensions", | 42 localized_strings->SetString(L"syncextensions", |
| 44 l10n_util::GetString(IDS_SYNC_DATATYPE_EXTENSIONS)); | 43 l10n_util::GetString(IDS_SYNC_DATATYPE_EXTENSIONS)); |
| 45 localized_strings->SetString(L"syncautofill", | 44 localized_strings->SetString(L"syncautofill", |
| 46 l10n_util::GetString(IDS_SYNC_DATATYPE_AUTOFILL)); | 45 l10n_util::GetString(IDS_SYNC_DATATYPE_AUTOFILL)); |
| 47 localized_strings->SetString(L"syncthemes", | 46 localized_strings->SetString(L"syncthemes", |
| 48 l10n_util::GetString(IDS_SYNC_DATATYPE_THEMES)); | 47 l10n_util::GetString(IDS_SYNC_DATATYPE_THEMES)); |
| 49 } | 48 } |
| OLD | NEW |