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

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

Issue 6954001: Add "Keep chrome running in background" preference. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed problem that was making UI visible on Mac. Created 9 years, 7 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/common/pref_names.h ('k') | no next file » | 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) 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 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1343 "profile.managed_plugins_blocked_for_urls"; 1343 "profile.managed_plugins_blocked_for_urls";
1344 const char kManagedPopupsAllowedForUrls[] = 1344 const char kManagedPopupsAllowedForUrls[] =
1345 "profile.managed_popups_allowed_for_urls"; 1345 "profile.managed_popups_allowed_for_urls";
1346 const char kManagedPopupsBlockedForUrls[] = 1346 const char kManagedPopupsBlockedForUrls[] =
1347 "profile.managed_popups_blocked_for_urls"; 1347 "profile.managed_popups_blocked_for_urls";
1348 1348
1349 // Set to true if the user created a login item so we should not modify it when 1349 // Set to true if the user created a login item so we should not modify it when
1350 // uninstalling background apps. 1350 // uninstalling background apps.
1351 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item"; 1351 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item";
1352 1352
1353 // Set to true if background mode is enabled on this browser.
1354 const char kBackgroundModeEnabled[] = "background_mode.enabled";
1355
1353 // List of protocol handlers. 1356 // List of protocol handlers.
1354 const char kRegisteredProtocolHandlers[] = 1357 const char kRegisteredProtocolHandlers[] =
1355 "custom_handlers.registered_protocol_handlers"; 1358 "custom_handlers.registered_protocol_handlers";
1356 1359
1357 // List of protocol handlers the user has requested not to be asked about again. 1360 // List of protocol handlers the user has requested not to be asked about again.
1358 const char kIgnoredProtocolHandlers[] = 1361 const char kIgnoredProtocolHandlers[] =
1359 "custom_handlers.ignored_protocol_handlers"; 1362 "custom_handlers.ignored_protocol_handlers";
1360 1363
1361 // Whether user-specified handlers for protocols and content types can be 1364 // Whether user-specified handlers for protocols and content types can be
1362 // specified. 1365 // specified.
1363 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1366 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1364 } // namespace prefs 1367 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698