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

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

Issue 8758003: Remove dead code for gpu blacklist auto-update. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 1372
1373 // Specifies what users should maximize the NTP web store promo. 1373 // Specifies what users should maximize the NTP web store promo.
1374 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; 1374 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup";
1375 1375
1376 // Customized app page names that appear on the New Tab Page. 1376 // Customized app page names that appear on the New Tab Page.
1377 const char kNTPAppPageNames[] = "ntp.app_page_names"; 1377 const char kNTPAppPageNames[] = "ntp.app_page_names";
1378 1378
1379 // When true, web store promos will never be shown. 1379 // When true, web store promos will never be shown.
1380 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo"; 1380 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo";
1381 1381
1382 // The most up-to-date GPU blacklist downloaded from the web, which replaces
1383 // the one that's installed with chrome.
1384 const char kGpuBlacklist[] = "gpu_blacklist";
1385
1386 // Last time of update of gpu_blacklist.
1387 const char kGpuBlacklistUpdate[] = "gpu_blacklist_update";
1388
1389 const char kDevToolsDisabled[] = "devtools.disabled"; 1382 const char kDevToolsDisabled[] = "devtools.disabled";
1390 1383
1391 // A boolean specifying whether dev tools window should be opened docked. 1384 // A boolean specifying whether dev tools window should be opened docked.
1392 const char kDevToolsOpenDocked[] = "devtools.open_docked"; 1385 const char kDevToolsOpenDocked[] = "devtools.open_docked";
1393 1386
1394 // Integer location of the split bar in the browser view. 1387 // Integer location of the split bar in the browser view.
1395 const char kDevToolsSplitLocation[] = "devtools.split_location"; 1388 const char kDevToolsSplitLocation[] = "devtools.split_location";
1396 1389
1397 // 64-bit integer serialization of the base::Time when the last sync occurred. 1390 // 64-bit integer serialization of the base::Time when the last sync occurred.
1398 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; 1391 const char kSyncLastSyncedTime[] = "sync.last_synced_time";
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 1673
1681 // String that represents the recovery component last downloaded version. This 1674 // String that represents the recovery component last downloaded version. This
1682 // takes the usual 'a.b.c.d' notation. 1675 // takes the usual 'a.b.c.d' notation.
1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; 1676 const char kRecoveryComponentVersion[] = "recovery_component.version";
1684 1677
1685 // String that stores the component updater last known state. This is used for 1678 // String that stores the component updater last known state. This is used for
1686 // troubleshooting. 1679 // troubleshooting.
1687 const char kComponentUpdaterState[] = "component_updater.state"; 1680 const char kComponentUpdaterState[] = "component_updater.state";
1688 1681
1689 } // namespace prefs 1682 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698