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

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

Issue 1415513002: Remove plumbing for inert-visual-viewport flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Worked on review comments Created 5 years, 2 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 540
541 // These mappings only apply to the host resolver. 541 // These mappings only apply to the host resolver.
542 const char kHostResolverRules[] = "host-resolver-rules"; 542 const char kHostResolverRules[] = "host-resolver-rules";
543 543
544 // Ignores certificate-related errors. 544 // Ignores certificate-related errors.
545 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; 545 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors";
546 546
547 // Ignores GPU blacklist. 547 // Ignores GPU blacklist.
548 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; 548 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist";
549 549
550 // Makes all APIs reflect the layout viewport.
551 const char kInertVisualViewport[] = "inert-visual-viewport";
552
553 // Run the GPU process as a thread in the browser process. 550 // Run the GPU process as a thread in the browser process.
554 const char kInProcessGPU[] = "in-process-gpu"; 551 const char kInProcessGPU[] = "in-process-gpu";
555 552
556 // Overrides the timeout, in seconds, that a child process waits for a 553 // Overrides the timeout, in seconds, that a child process waits for a
557 // connection from the browser before killing itself. 554 // connection from the browser before killing itself.
558 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; 555 const char kIPCConnectionTimeout[] = "ipc-connection-timeout";
559 556
560 // Specifies the flags passed to JS engine 557 // Specifies the flags passed to JS engine
561 const char kJavaScriptFlags[] = "js-flags"; 558 const char kJavaScriptFlags[] = "js-flags";
562 559
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 968 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
972 969
973 // Enables the exporting of the tracing events to ETW. This is only supported on 970 // Enables the exporting of the tracing events to ETW. This is only supported on
974 // Windows Vista and later. 971 // Windows Vista and later.
975 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 972 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
976 #endif 973 #endif
977 974
978 // Don't dump stuff here, follow the same order as the header. 975 // Don't dump stuff here, follow the same order as the header.
979 976
980 } // namespace switches 977 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698