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

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

Issue 2854403003: MD Settings: Add feature flag for showing content settings in a per-origin view. (Closed)
Patch Set: Fix histogram entry? Created 3 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
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/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 // Enable background mode for the Push API. 402 // Enable background mode for the Push API.
403 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; 403 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode";
404 404
405 // Enables the QUIC protocol. This is a temporary testing flag. 405 // Enables the QUIC protocol. This is a temporary testing flag.
406 const char kEnableQuic[] = "enable-quic"; 406 const char kEnableQuic[] = "enable-quic";
407 407
408 // Enable settings in a separate browser window per profile 408 // Enable settings in a separate browser window per profile
409 // (see SettingsWindowEnabled() below). 409 // (see SettingsWindowEnabled() below).
410 const char kEnableSettingsWindow[] = "enable-settings-window"; 410 const char kEnableSettingsWindow[] = "enable-settings-window";
411 411
412 // Enables site details pages in the Chrome settings UI.
413 const char kEnableSiteDetails[] = "enable-site-details";
414
412 // Enable the Site Engagement Eviction Policy which evicts temporary storage 415 // Enable the Site Engagement Eviction Policy which evicts temporary storage
413 // using the site engagement service. Implicitly enables the site engagement 416 // using the site engagement service. Implicitly enables the site engagement
414 // service. 417 // service.
415 const char kEnableSiteEngagementEvictionPolicy[] = 418 const char kEnableSiteEngagementEvictionPolicy[] =
416 "enable-site-engagement-eviction-policy"; 419 "enable-site-engagement-eviction-policy";
417 420
418 // Enables the site settings all sites list and site details pages in the Chrome 421 // Enables the site settings all sites list and site details pages in the Chrome
419 // settings UI. 422 // settings UI.
420 const char kEnableSiteSettings[] = "enable-site-settings"; 423 const char kEnableSiteSettings[] = "enable-site-settings";
421 424
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
1179 1182
1180 // ----------------------------------------------------------------------------- 1183 // -----------------------------------------------------------------------------
1181 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1184 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1182 // 1185 //
1183 // You were going to just dump your switches here, weren't you? Instead, please 1186 // You were going to just dump your switches here, weren't you? Instead, please
1184 // put them in alphabetical order above, or in order inside the appropriate 1187 // put them in alphabetical order above, or in order inside the appropriate
1185 // ifdef at the bottom. The order should match the header. 1188 // ifdef at the bottom. The order should match the header.
1186 // ----------------------------------------------------------------------------- 1189 // -----------------------------------------------------------------------------
1187 1190
1188 } // namespace switches 1191 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698