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

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

Issue 3036024: Revert import bookmarks tip and bookmark bar removal on NTP (Merge of r53804 ... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/472/src/
Patch Set: Created 10 years, 4 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 #endif 433 #endif
434 434
435 // Boolean that is false if we should show window manager decorations. If 435 // Boolean that is false if we should show window manager decorations. If
436 // true, we draw a custom chrome frame (thicker title bar and blue border). 436 // true, we draw a custom chrome frame (thicker title bar and blue border).
437 const wchar_t kUseCustomChromeFrame[] = L"browser.custom_chrome_frame"; 437 const wchar_t kUseCustomChromeFrame[] = L"browser.custom_chrome_frame";
438 438
439 // Boolean that indicates whether the infobar explaining that search can be 439 // Boolean that indicates whether the infobar explaining that search can be
440 // done directly from the omnibox should be shown. 440 // done directly from the omnibox should be shown.
441 const wchar_t kShowOmniboxSearchHint[] = L"browser.show_omnibox_search_hint"; 441 const wchar_t kShowOmniboxSearchHint[] = L"browser.show_omnibox_search_hint";
442 442
443 // Int which specifies how many times left to show a promotional message on the
444 // NTP. This value decrements each time the NTP is shown for the first time
445 // in a session.
446 const wchar_t kNTPPromoViewsRemaining[] = L"browser.ntp.promo_remaining";
447
448 // The list of origins which are allowed|denied to show desktop notifications. 443 // The list of origins which are allowed|denied to show desktop notifications.
449 const wchar_t kDesktopNotificationDefaultContentSetting[] = 444 const wchar_t kDesktopNotificationDefaultContentSetting[] =
450 L"profile.notifications_default_content_setting"; 445 L"profile.notifications_default_content_setting";
451 const wchar_t kDesktopNotificationAllowedOrigins[] = 446 const wchar_t kDesktopNotificationAllowedOrigins[] =
452 L"profile.notification_allowed_sites"; 447 L"profile.notification_allowed_sites";
453 const wchar_t kDesktopNotificationDeniedOrigins[] = 448 const wchar_t kDesktopNotificationDeniedOrigins[] =
454 L"profile.notification_denied_sites"; 449 L"profile.notification_denied_sites";
455 450
456 // Dictionary of content settings applied to all hosts by default. 451 // Dictionary of content settings applied to all hosts by default.
457 const wchar_t kDefaultContentSettings[] = L"profile.default_content_settings"; 452 const wchar_t kDefaultContentSettings[] = L"profile.default_content_settings";
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 // String specifying the proxy server. For a specification of the expected 926 // String specifying the proxy server. For a specification of the expected
932 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). 927 // syntax see net::ProxyConfig::ProxyRules::ParseFromString().
933 const wchar_t kProxyServer[] = L"proxy.server"; 928 const wchar_t kProxyServer[] = L"proxy.server";
934 // URL to the proxy .pac file. 929 // URL to the proxy .pac file.
935 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; 930 const wchar_t kProxyPacUrl[] = L"proxy.pac_url";
936 // String containing proxy bypass rules. For a specification of the 931 // String containing proxy bypass rules. For a specification of the
937 // expected syntax see net::ProxyBypassRules::ParseFromString(). 932 // expected syntax see net::ProxyBypassRules::ParseFromString().
938 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; 933 const wchar_t kProxyBypassList[] = L"proxy.bypass_list";
939 934
940 } // namespace prefs 935 } // 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