diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-22 16:18:56 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-22 16:18:56 +0000 |
commit | 866ce94441f0f912a1ff6b471369212487412bde (patch) | |
tree | 264c4af856800dad95fa1757b053b43914e6b1fb /chrome/common/chrome_switches.cc | |
parent | fa77eb512f3cf39ccd0b34367bc287472d29db5f (diff) | |
download | chromium_src-866ce94441f0f912a1ff6b471369212487412bde.zip chromium_src-866ce94441f0f912a1ff6b471369212487412bde.tar.gz chromium_src-866ce94441f0f912a1ff6b471369212487412bde.tar.bz2 |
Switch back to disabling Core Animation for Flash (for branch merge).
This goes back to the M5 logic for managing Flash model negotiation on the Mac.
BUG=49169
TEST=Flash should not negotation Core Animation mode unless --enable-flash-core-animation is passed. White flickering shouldn't happen, find bar and full screen UI should show.
Review URL: http://codereview.chromium.org/3044015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53342 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 93586b5..66c864f 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -1074,9 +1074,9 @@ const char kPasswordStore[] = "password-store"; // is denied by the sandbox. const char kEnableSandboxLogging[] = "enable-sandbox-logging"; -// Temporary flag to prevent Flash from negotiating the Core Animation drawing -// model. This will be removed once the last issues have been resolved. -const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; +// Temporary flag to allow Flash to negotiate the Core Animation drawing model. +// This will eventually become the default, and the flag can be removed. +const char kEnableFlashCoreAnimation[] = "enable-flash-core-animation"; #else // Enable Kiosk mode. const char kKioskMode[] = "kiosk"; |