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

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

Issue 10989006: Upstream USB web debugging enabled user pref. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort Created 8 years, 3 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 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 const char kNtpWebStorePromoExpire[] = "ntp.webstorepromo.expire"; 1542 const char kNtpWebStorePromoExpire[] = "ntp.webstorepromo.expire";
1543 1543
1544 // Specifies what users should maximize the NTP web store promo. 1544 // Specifies what users should maximize the NTP web store promo.
1545 const char kNtpWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; 1545 const char kNtpWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup";
1546 1546
1547 // Customized app page names that appear on the New Tab Page. 1547 // Customized app page names that appear on the New Tab Page.
1548 const char kNtpAppPageNames[] = "ntp.app_page_names"; 1548 const char kNtpAppPageNames[] = "ntp.app_page_names";
1549 1549
1550 const char kDevToolsDisabled[] = "devtools.disabled"; 1550 const char kDevToolsDisabled[] = "devtools.disabled";
1551 1551
1552 // A string specifying the dock location (either 'bottom' or 'right').
1553 const char kDevToolsDockSide[] = "devtools.dock_side";
1554
1555 // Maps of files edited locally using DevTools.
1556 const char kDevToolsEditedFiles[] = "devtools.edited_files";
1557
1558 // Integer location of the horizontal split bar in the browser view.
1559 const char kDevToolsHSplitLocation[] = "devtools.split_location";
1560
1552 // A boolean specifying whether dev tools window should be opened docked. 1561 // A boolean specifying whether dev tools window should be opened docked.
1553 const char kDevToolsOpenDocked[] = "devtools.open_docked"; 1562 const char kDevToolsOpenDocked[] = "devtools.open_docked";
1554 1563
1555 // A string specifying the dock location (either 'bottom' or 'right'). 1564 #if defined(OS_ANDROID)
1556 const char kDevToolsDockSide[] = "devtools.dock_side"; 1565 // A boolean specifying whether remote dev tools debugging is enabled.
1557 1566 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled";
1558 // Integer location of the horizontal split bar in the browser view. 1567 #endif
1559 const char kDevToolsHSplitLocation[] = "devtools.split_location";
1560 1568
1561 // Integer location of the vertical split bar in the browser view. 1569 // Integer location of the vertical split bar in the browser view.
1562 const char kDevToolsVSplitLocation[] = "devtools.v_split_location"; 1570 const char kDevToolsVSplitLocation[] = "devtools.v_split_location";
1563 1571
1564 // Maps of files edited locally using DevTools.
1565 const char kDevToolsEditedFiles[] = "devtools.edited_files";
1566
1567 // 64-bit integer serialization of the base::Time when the last sync occurred. 1572 // 64-bit integer serialization of the base::Time when the last sync occurred.
1568 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; 1573 const char kSyncLastSyncedTime[] = "sync.last_synced_time";
1569 1574
1570 // Boolean specifying whether the user finished setting up sync. 1575 // Boolean specifying whether the user finished setting up sync.
1571 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; 1576 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
1572 1577
1573 // Boolean specifying whether to automatically sync all data types (including 1578 // Boolean specifying whether to automatically sync all data types (including
1574 // future ones, as they're added). If this is true, the following preferences 1579 // future ones, as they're added). If this is true, the following preferences
1575 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. 1580 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
1576 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; 1581 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 // Tracks the time of the last shown warning. Used to reset 2057 // Tracks the time of the last shown warning. Used to reset
2053 // |network_profile.warnings_left| after a silence period. 2058 // |network_profile.warnings_left| after a silence period.
2054 const char kNetworkProfileLastWarningTime[] = 2059 const char kNetworkProfileLastWarningTime[] =
2055 "network_profile.last_warning_time"; 2060 "network_profile.last_warning_time";
2056 2061
2057 // 64-bit serialization of the time last policy usage statistics were collected 2062 // 64-bit serialization of the time last policy usage statistics were collected
2058 // by UMA_HISTOGRAM_ENUMERATION. 2063 // by UMA_HISTOGRAM_ENUMERATION.
2059 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2064 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2060 2065
2061 } // namespace prefs 2066 } // namespace prefs
OLDNEW
« chrome/browser/profiles/profile.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698