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

Side by Side Diff: content/public/common/content_switches.cc

Issue 1720403003: Ship the Credential Management API by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test. Created 4 years, 10 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 const char kDisableAcceleratedJpegDecoding[] = 317 const char kDisableAcceleratedJpegDecoding[] =
318 "disable-accelerated-jpeg-decoding"; 318 "disable-accelerated-jpeg-decoding";
319 319
320 // Enables LCD text. 320 // Enables LCD text.
321 const char kEnableLCDText[] = "enable-lcd-text"; 321 const char kEnableLCDText[] = "enable-lcd-text";
322 322
323 // Enables using signed distance fields when rendering text. 323 // Enables using signed distance fields when rendering text.
324 // Only valid if GPU rasterization is enabled as well. 324 // Only valid if GPU rasterization is enabled as well.
325 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; 325 const char kEnableDistanceFieldText[] = "enable-distance-field-text";
326 326
327 // Enable the experimental Credential Manager JavaScript API.
328 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api";
329
330 // Enable the creation of compositing layers when it would prevent LCD text. 327 // Enable the creation of compositing layers when it would prevent LCD text.
331 const char kEnablePreferCompositingToLCDText[] = 328 const char kEnablePreferCompositingToLCDText[] =
332 "enable-prefer-compositing-to-lcd-text"; 329 "enable-prefer-compositing-to-lcd-text";
333 330
334 // Disable one or more Blink runtime-enabled features. 331 // Disable one or more Blink runtime-enabled features.
335 // Use names from RuntimeEnabledFeatures.in, separated by commas. 332 // Use names from RuntimeEnabledFeatures.in, separated by commas.
336 // Applied before kDisableBlinkFeatures, and after other flags that change these 333 // Applied before kDisableBlinkFeatures, and after other flags that change these
337 // features. 334 // features.
338 const char kEnableBlinkFeatures[] = "enable-blink-features"; 335 const char kEnableBlinkFeatures[] = "enable-blink-features";
339 336
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1057 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1061 1058
1062 // Enables the exporting of the tracing events to ETW. This is only supported on 1059 // Enables the exporting of the tracing events to ETW. This is only supported on
1063 // Windows Vista and later. 1060 // Windows Vista and later.
1064 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1061 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1065 #endif 1062 #endif
1066 1063
1067 // Don't dump stuff here, follow the same order as the header. 1064 // Don't dump stuff here, follow the same order as the header.
1068 1065
1069 } // namespace switches 1066 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698