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

Side by Side Diff: chrome/common/pref_names.cc

Issue 10837158: mac: Delete more 10.5-only code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rsesek Created 8 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
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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 2016 matching lines...) Expand 10 before | Expand all | Expand 10 after
2027 const char kInManagedMode[] = "managed_mode"; 2027 const char kInManagedMode[] = "managed_mode";
2028 2028
2029 // Counts how many more times the 'profile on a network share' warning should be 2029 // Counts how many more times the 'profile on a network share' warning should be
2030 // shown to the user before the next silence period. 2030 // shown to the user before the next silence period.
2031 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2031 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2032 // Tracks the time of the last shown warning. Used to reset 2032 // Tracks the time of the last shown warning. Used to reset
2033 // |network_profile.warnings_left| after a silence period. 2033 // |network_profile.warnings_left| after a silence period.
2034 const char kNetworkProfileLastWarningTime[] = 2034 const char kNetworkProfileLastWarningTime[] =
2035 "network_profile.last_warning_time"; 2035 "network_profile.last_warning_time";
2036 2036
2037 #if defined(OS_MACOSX)
2038 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5.
2039 const char kMacLeopardObsoleteInfobarLastShown[] =
2040 "mac_105_obsolete_infobar_last_shown";
2041 #endif // defined(OS_MACOSX)
2042
2043 } // namespace prefs 2037 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698