diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 20:56:35 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 20:56:35 +0000 |
commit | dbc61e9ff96b8d9b7418ceff4384d54e40ea0247 (patch) | |
tree | e473179d6d5c0605b3de91df479a5b30738ac0bc /chrome/common/chrome_switches.cc | |
parent | e1c14cebfdc0eb1b54b84c3806d7cf5c8a526e10 (diff) | |
download | chromium_src-dbc61e9ff96b8d9b7418ceff4384d54e40ea0247.zip chromium_src-dbc61e9ff96b8d9b7418ceff4384d54e40ea0247.tar.gz chromium_src-dbc61e9ff96b8d9b7418ceff4384d54e40ea0247.tar.bz2 |
Add the command line switch (--enable-video) for enabling HTML5 Video/Audio tag
Review URL: http://codereview.chromium.org/12487
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6047 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 4681f00..5a1ab4c 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -344,5 +344,7 @@ const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; // http://b/issue?id=1432077 is fixed. const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; -} // namespace switches +// Enable HTML5 Video/Audio tag support +const wchar_t kEnableVideo[] = L"enable-video"; +} // namespace switches |