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

Side by Side Diff: ui/base/ui_base_switches.cc

Issue 464063005: Add a flag to enable remote CoreAnimation API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporate review feedback Created 6 years, 4 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 | « ui/base/ui_base_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 "ui/base/ui_base_switches.h" 5 #include "ui/base/ui_base_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 #if defined(OS_MACOSX) && !defined(OS_IOS) 9 #if defined(OS_MACOSX) && !defined(OS_IOS)
10 // Disable use of CoreAnimation to draw on the Mac. 10 // Disable use of CoreAnimation to draw on the Mac.
11 const char kDisableCoreAnimation[] = "disable-core-animation"; 11 const char kDisableCoreAnimation[] = "disable-core-animation";
12
13 // Enable use of cross-process CALayers to display content directly from the
14 // GPU process on Mac.
15 const char kEnableRemoteCoreAnimation[] = "enable-remote-core-animation";
12 #endif 16 #endif
13 17
14 // Disables use of DWM composition for top level windows. 18 // Disables use of DWM composition for top level windows.
15 const char kDisableDwmComposition[] = "disable-dwm-composition"; 19 const char kDisableDwmComposition[] = "disable-dwm-composition";
16 20
17 // Disables an experimental focus manager to track text input clients. 21 // Disables an experimental focus manager to track text input clients.
18 const char kDisableTextInputFocusManager[] = "disable-text-input-focus-manager"; 22 const char kDisableTextInputFocusManager[] = "disable-text-input-focus-manager";
19 23
20 // Disables touch adjustment. 24 // Disables touch adjustment.
21 const char kDisableTouchAdjustment[] = "disable-touch-adjustment"; 25 const char kDisableTouchAdjustment[] = "disable-touch-adjustment";
(...skipping 15 matching lines...) Expand all
37 41
38 // The language file that we want to try to open. Of the form 42 // The language file that we want to try to open. Of the form
39 // language[-country] where language is the 2 letter code from ISO-639. 43 // language[-country] where language is the 2 letter code from ISO-639.
40 const char kLang[] = "lang"; 44 const char kLang[] = "lang";
41 45
42 // Disable ui::MessageBox. This is useful when running as part of scripts that 46 // Disable ui::MessageBox. This is useful when running as part of scripts that
43 // do not have a user interface. 47 // do not have a user interface.
44 const char kNoMessageBox[] = "no-message-box"; 48 const char kNoMessageBox[] = "no-message-box";
45 49
46 } // namespace switches 50 } // namespace switches
OLDNEW
« no previous file with comments | « ui/base/ui_base_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698