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

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

Issue 151083002: Create a visible window with class name Chrome_RenderWidgetHostHWND which corresponds to the bounds… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
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 | Annotate | Revision Log
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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 // See comment for kEnableCompositingForFixedPosition. 471 // See comment for kEnableCompositingForFixedPosition.
472 const char kEnableHighDpiCompositingForFixedPosition[] = 472 const char kEnableHighDpiCompositingForFixedPosition[] =
473 "enable-high-dpi-fixed-position-compositing"; 473 "enable-high-dpi-fixed-position-compositing";
474 474
475 #if defined(OS_WIN) 475 #if defined(OS_WIN)
476 // Enables the DirectWrite font rendering system on windows. 476 // Enables the DirectWrite font rendering system on windows.
477 const char kEnableDirectWrite[] = "enable-direct-write"; 477 const char kEnableDirectWrite[] = "enable-direct-write";
478 478
479 // Use high resolution timers for TimeTicks. 479 // Use high resolution timers for TimeTicks.
480 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; 480 const char kEnableHighResolutionTime[] = "enable-high-resolution-time";
481
482 // Disable the Legacy Window which corresponds to the size of the WebContents.
483 const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window";
481 #endif 484 #endif
482 485
483 // Enable HTML Imports 486 // Enable HTML Imports
484 extern const char kEnableHTMLImports[] = "enable-html-imports"; 487 extern const char kEnableHTMLImports[] = "enable-html-imports";
485 488
486 // Enables support for inband text tracks in media content. 489 // Enables support for inband text tracks in media content.
487 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; 490 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks";
488 491
489 // Enable inputmode attribute of HTML input or text element. 492 // Enable inputmode attribute of HTML input or text element.
490 extern const char kEnableInputModeAttribute[] = "enable-input-mode-attribute"; 493 extern const char kEnableInputModeAttribute[] = "enable-input-mode-attribute";
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 #endif 1062 #endif
1060 1063
1061 #if defined(OS_POSIX) 1064 #if defined(OS_POSIX)
1062 // Causes the child processes to cleanly exit via calling exit(). 1065 // Causes the child processes to cleanly exit via calling exit().
1063 const char kChildCleanExit[] = "child-clean-exit"; 1066 const char kChildCleanExit[] = "child-clean-exit";
1064 #endif 1067 #endif
1065 1068
1066 // Don't dump stuff here, follow the same order as the header. 1069 // Don't dump stuff here, follow the same order as the header.
1067 1070
1068 } // namespace switches 1071 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698