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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 3176027: Mac: Well-behaved accelerated plugins, actual fix (Closed)
Patch Set: test Created 10 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 // Specifies which password store to use (detect, default, gnome, kwallet). 1152 // Specifies which password store to use (detect, default, gnome, kwallet).
1153 const char kPasswordStore[] = "password-store"; 1153 const char kPasswordStore[] = "password-store";
1154 #endif 1154 #endif
1155 #endif 1155 #endif
1156 1156
1157 #if defined(OS_MACOSX) 1157 #if defined(OS_MACOSX)
1158 // Temporary flag to prevent Flash from negotiating the Core Animation drawing 1158 // Temporary flag to prevent Flash from negotiating the Core Animation drawing
1159 // model. This will be removed once the last issues have been resolved. 1159 // model. This will be removed once the last issues have been resolved.
1160 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; 1160 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation";
1161 1161
1162 // Temporary flag to disable hole punching for accelerated surfaces. This is
1163 // here to aid debugging eventual problems, it can be removed once hole punching
1164 // has been out there for a few dev channel releases without problems.
1165 const char kDisableHolePunching[] = "disable-hole-punching";
1166
1162 // Enables the tabs expose feature ( http://crbug.com/50307 ). 1167 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1163 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; 1168 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1164 1169
1165 // Cause the OS X sandbox write to syslog every time an access to a resource 1170 // Cause the OS X sandbox write to syslog every time an access to a resource
1166 // is denied by the sandbox. 1171 // is denied by the sandbox.
1167 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 1172 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
1168 #else 1173 #else
1169 // Enable Kiosk mode. 1174 // Enable Kiosk mode.
1170 const char kKioskMode[] = "kiosk"; 1175 const char kKioskMode[] = "kiosk";
1171 #endif 1176 #endif
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1211 1216
1212 // ----------------------------------------------------------------------------- 1217 // -----------------------------------------------------------------------------
1213 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1218 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1214 // 1219 //
1215 // You were going to just dump your switches here, weren't you? Instead, 1220 // You were going to just dump your switches here, weren't you? Instead,
1216 // please put them in alphabetical order above, or in order inside the 1221 // please put them in alphabetical order above, or in order inside the
1217 // appropriate ifdef at the bottom. The order should match the header. 1222 // appropriate ifdef at the bottom. The order should match the header.
1218 // ----------------------------------------------------------------------------- 1223 // -----------------------------------------------------------------------------
1219 1224
1220 } // namespace switches 1225 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698