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

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

Issue 17286015: Adds a first-run balloon to the Windows notification center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test failures Created 7 years, 6 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 2138 matching lines...) Expand 10 before | Expand all | Expand 10 after
2149 // Value of the enums in TabStrip::LayoutType as an int. 2149 // Value of the enums in TabStrip::LayoutType as an int.
2150 const char kTabStripLayoutType[] = "tab_strip_layout_type"; 2150 const char kTabStripLayoutType[] = "tab_strip_layout_type";
2151 2151
2152 // If true, cloud policy for the user is not loaded when the user signs in. 2152 // If true, cloud policy for the user is not loaded when the user signs in.
2153 const char kDisableCloudPolicyOnSignin[] = 2153 const char kDisableCloudPolicyOnSignin[] =
2154 "policy.disable_cloud_policy_on_signin"; 2154 "policy.disable_cloud_policy_on_signin";
2155 2155
2156 // Indicates that factory reset was requested from options page. 2156 // Indicates that factory reset was requested from options page.
2157 const char kFactoryResetRequested[] = "FactoryResetRequested"; 2157 const char kFactoryResetRequested[] = "FactoryResetRequested";
2158 2158
2159 // Boolean recording whether we have showed a balloon that calls out the message
2160 // center for desktop notifications.
2161 const char kMessageCenterShowedFirstRunBalloon[] =
2162 "message_center.showed_first_run_balloon";
2163
2159 // *************** SERVICE PREFS *************** 2164 // *************** SERVICE PREFS ***************
2160 // These are attached to the service process. 2165 // These are attached to the service process.
2161 2166
2162 const char kCloudPrintRoot[] = "cloud_print"; 2167 const char kCloudPrintRoot[] = "cloud_print";
2163 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; 2168 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled";
2164 // The unique id for this instance of the cloud print proxy. 2169 // The unique id for this instance of the cloud print proxy.
2165 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; 2170 const char kCloudPrintProxyId[] = "cloud_print.proxy_id";
2166 // The GAIA auth token for Cloud Print 2171 // The GAIA auth token for Cloud Print
2167 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; 2172 const char kCloudPrintAuthToken[] = "cloud_print.auth_token";
2168 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server 2173 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
2492 2497
2493 // How often the bubble has been shown. 2498 // How often the bubble has been shown.
2494 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2495 2500
2496 // A string pref for storing the salt used to compute the pepper device ID. 2501 // A string pref for storing the salt used to compute the pepper device ID.
2497 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2502 const char kDRMSalt[] = "settings.privacy.drm_salt";
2498 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2499 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2500 2505
2501 } // namespace prefs 2506 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698