summaryrefslogtreecommitdiffstats
path: root/content/public
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 23:52:46 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 23:52:46 +0000
commit86b3f4b2779d33edc06a7e72c768868316d34b6f (patch)
treee68a0be69411bc298e4409cf354be265b2c87604 /content/public
parentb62eab12bcf6e0c3c3d6ccaa91f5ddfd4b0b1ead (diff)
downloadchromium_src-86b3f4b2779d33edc06a7e72c768868316d34b6f.zip
chromium_src-86b3f4b2779d33edc06a7e72c768868316d34b6f.tar.gz
chromium_src-86b3f4b2779d33edc06a7e72c768868316d34b6f.tar.bz2
Remove --enable-video-logging and WebVideoRenderer.
WebVideoRenderer was added in r40137 as part of my IPC-based video rendering experiment. I later added --enable-video-logging in r43038 which was intended to log timestamps and do logs analysis to determine playback smoothness. This again was experimental and never used. Also removed WebMediaPlayerProxy::SetRect() and VideoRendererImpl::SetRect() as they were not implemented. Review URL: http://codereview.chromium.org/8601004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r--content/public/common/content_switches.cc4
-rw-r--r--content/public/common/content_switches.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 5654714..01154ac 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -263,10 +263,6 @@ const char kEnableTouchEvents[] = "enable-touch-events";
// incomplete and this flag is used for development and testing.
const char kEnableVideoFullscreen[] = "enable-video-fullscreen";
-// Enables video logging where video elements log playback performance data to
-// the debug log.
-const char kEnableVideoLogging[] = "enable-video-logging";
-
// Enables support for video tracks. Current implementation is
// incomplete and this flag is used for development and testing.
const char kEnableVideoTrack[] = "enable-video-track";
diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h
index aa96c27..1ae5ce7 100644
--- a/content/public/common/content_switches.h
+++ b/content/public/common/content_switches.h
@@ -90,7 +90,6 @@ CONTENT_EXPORT extern const char kEnableThreadedCompositing[];
CONTENT_EXPORT extern const char kEnableTcpFastOpen[];
CONTENT_EXPORT extern const char kEnableTouchEvents[];
extern const char kEnableVideoFullscreen[];
-extern const char kEnableVideoLogging[];
CONTENT_EXPORT extern const char kEnableVideoTrack[];
CONTENT_EXPORT extern const char kEnableWebIntents[];
CONTENT_EXPORT extern const char kExperimentalLocationFeatures[];