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

Side by Side Diff: chrome/browser/dom_ui/sync_options_handler.cc

Issue 2819063: Cleanup: Remove unneeded headers from app/ (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: forward declare Created 10 years, 4 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
« no previous file with comments | « chrome/browser/dom_ui/slideshow_ui.cc ('k') | chrome/browser/download/download_file.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/slideshow_ui.cc ('k') | chrome/browser/download/download_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698