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

Side by Side Diff: chrome/browser/protector/prefs_backup_invalid_change.cc

Issue 10656014: Merge 143605 - grd file update for new 2x assets (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h" 6 #include "base/compiler_specific.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/browser/prefs/pref_service.h" 10 #include "chrome/browser/prefs/pref_service.h"
11 #include "chrome/browser/prefs/session_startup_pref.h" 11 #include "chrome/browser/prefs/session_startup_pref.h"
12 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/protector/base_prefs_change.h" 13 #include "chrome/browser/protector/base_prefs_change.h"
14 #include "chrome/browser/protector/histograms.h" 14 #include "chrome/browser/protector/histograms.h"
15 #include "chrome/browser/protector/protector_service.h" 15 #include "chrome/browser/protector/protector_service.h"
16 #include "chrome/browser/protector/protector_service_factory.h" 16 #include "chrome/browser/protector/protector_service_factory.h"
17 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
18 #include "chrome/common/url_constants.h" 18 #include "chrome/common/url_constants.h"
19 #include "googleurl/src/gurl.h" 19 #include "googleurl/src/gurl.h"
20 #include "grit/chromium_strings.h" 20 #include "grit/chromium_strings.h"
21 #include "grit/generated_resources.h" 21 #include "grit/generated_resources.h"
22 #include "grit/theme_resources.h" 22 #include "grit/theme_resources_standard.h"
23 #include "ui/base/l10n/l10n_util.h" 23 #include "ui/base/l10n/l10n_util.h"
24 24
25 namespace protector { 25 namespace protector {
26 26
27 // Unknown change to Preferences with invalid backup. 27 // Unknown change to Preferences with invalid backup.
28 class PrefsBackupInvalidChange : public BasePrefsChange { 28 class PrefsBackupInvalidChange : public BasePrefsChange {
29 public: 29 public:
30 PrefsBackupInvalidChange(); 30 PrefsBackupInvalidChange();
31 31
32 // BasePrefsChange overrides: 32 // BasePrefsChange overrides:
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 142
143 bool PrefsBackupInvalidChange::CanBeMerged() const { 143 bool PrefsBackupInvalidChange::CanBeMerged() const {
144 return false; 144 return false;
145 } 145 }
146 146
147 BaseSettingChange* CreatePrefsBackupInvalidChange() { 147 BaseSettingChange* CreatePrefsBackupInvalidChange() {
148 return new PrefsBackupInvalidChange(); 148 return new PrefsBackupInvalidChange();
149 } 149 }
150 150
151 } // namespace protector 151 } // namespace protector
OLDNEW
« no previous file with comments | « chrome/browser/protector/homepage_change.cc ('k') | chrome/browser/protector/session_startup_change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698