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

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

Issue 137493006: Revert r156303 as non-Aura Metro mode is gone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « content/public/common/content_switches.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) 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 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation"; 574 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation";
575 575
576 // Enable support for ServiceWorker. See 576 // Enable support for ServiceWorker. See
577 // https://github.com/slightlyoff/ServiceWorker for more information. 577 // https://github.com/slightlyoff/ServiceWorker for more information.
578 const char kEnableServiceWorker[] = "enable-service-worker"; 578 const char kEnableServiceWorker[] = "enable-service-worker";
579 579
580 // Enable use of experimental TCP sockets API for sending data in the 580 // Enable use of experimental TCP sockets API for sending data in the
581 // SYN packet. 581 // SYN packet.
582 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; 582 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen";
583 583
584 // Enable Text Service Framework(TSF) for text inputting instead of IMM32. This
585 // flag is ignored on Metro environment.
586 const char kEnableTextServicesFramework[] = "enable-text-services-framework";
587
588 // Enable multithreaded GPU compositing of web content. 584 // Enable multithreaded GPU compositing of web content.
589 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; 585 const char kEnableThreadedCompositing[] = "enable-threaded-compositing";
590 586
591 // Enable accelerated overflow scrolling in all cases. 587 // Enable accelerated overflow scrolling in all cases.
592 const char kEnableUniversalAcceleratedOverflowScroll[] = 588 const char kEnableUniversalAcceleratedOverflowScroll[] =
593 "enable-universal-accelerated-overflow-scroll"; 589 "enable-universal-accelerated-overflow-scroll";
594 590
595 // Enable screen capturing support for MediaStream API. 591 // Enable screen capturing support for MediaStream API.
596 const char kEnableUserMediaScreenCapturing[] = 592 const char kEnableUserMediaScreenCapturing[] =
597 "enable-usermedia-screen-capturing"; 593 "enable-usermedia-screen-capturing";
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 #endif 1058 #endif
1063 1059
1064 #if defined(OS_POSIX) 1060 #if defined(OS_POSIX)
1065 // Causes the child processes to cleanly exit via calling exit(). 1061 // Causes the child processes to cleanly exit via calling exit().
1066 const char kChildCleanExit[] = "child-clean-exit"; 1062 const char kChildCleanExit[] = "child-clean-exit";
1067 #endif 1063 #endif
1068 1064
1069 // Don't dump stuff here, follow the same order as the header. 1065 // Don't dump stuff here, follow the same order as the header.
1070 1066
1071 } // namespace switches 1067 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698