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

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

Issue 18430004: Sets correct ActivityLog enabled status to the first renderer process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New approach with a preference variable Created 7 years, 5 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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2488 matching lines...) Expand 10 before | Expand all | Expand 10 after
2499 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2499 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2500 2500
2501 // How often the bubble has been shown. 2501 // How often the bubble has been shown.
2502 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2502 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2503 2503
2504 // A string pref for storing the salt used to compute the pepper device ID. 2504 // A string pref for storing the salt used to compute the pepper device ID.
2505 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2505 const char kDRMSalt[] = "settings.privacy.drm_salt";
2506 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2506 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2507 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2507 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2508 2508
2509 // A boolean pref that signals if the ActivityLog extension is installed and
2510 // enabled.
2511 const char kActivityLogExtensionEnabled[] =
2512 "activity_log.activity_log_extension_enabled";
2513
2509 } // namespace prefs 2514 } // namespace prefs
OLDNEW
« chrome/browser/extensions/activity_log/activity_log.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