Commit f761007e authored by fischman@chromium.org's avatar fischman@chromium.org

Dead member removal, courtesy of Scythe, %/media/% edition.


Review URL: https://chromiumcodereview.appspot.com/10837026

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149318 0039d316-1c4b-4281-b951-d872f2087c98
parent 45be7c12
...@@ -79,7 +79,6 @@ class MediaInternals : public content::MediaObserver { ...@@ -79,7 +79,6 @@ class MediaInternals : public content::MediaObserver {
// Calls javascript |function|(|value|) on each attached UI. // Calls javascript |function|(|value|) on each attached UI.
void SendUpdate(const std::string& function, Value* value); void SendUpdate(const std::string& function, Value* value);
static MediaInternals* instance_;
DictionaryValue data_; DictionaryValue data_;
ObserverList<MediaInternalsObserver> observers_; ObserverList<MediaInternalsObserver> observers_;
scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_;
......
...@@ -178,7 +178,6 @@ class RTCVideoDecoderTest : public testing::Test { ...@@ -178,7 +178,6 @@ class RTCVideoDecoderTest : public testing::Test {
protected: protected:
static const int kWidth; static const int kWidth;
static const int kHeight; static const int kHeight;
static const char* kUrl;
static const PipelineStatistics kStatistics; static const PipelineStatistics kStatistics;
RTCVideoDecoderTest() { RTCVideoDecoderTest() {
......
...@@ -29,7 +29,6 @@ const int64 kPositionNotSpecified = -1; ...@@ -29,7 +29,6 @@ const int64 kPositionNotSpecified = -1;
const char kHttpScheme[] = "http"; const char kHttpScheme[] = "http";
const char kHttpsScheme[] = "https"; const char kHttpsScheme[] = "https";
const char kDataScheme[] = "data";
// BufferedResourceLoader is single threaded and must be accessed on the // BufferedResourceLoader is single threaded and must be accessed on the
// render thread. It wraps a WebURLLoader and does in-memory buffering, // render thread. It wraps a WebURLLoader and does in-memory buffering,
......
...@@ -44,7 +44,6 @@ static const char* kHttpUrl = "http://test"; ...@@ -44,7 +44,6 @@ static const char* kHttpUrl = "http://test";
static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing"; static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing";
static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2"; static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2";
static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2"; static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2";
static const char kHttpRedirectToDifferentDomainUrl2[] = "http://test2/ing";
static const int kDataSize = 1024; static const int kDataSize = 1024;
static const int kHttpOK = 200; static const int kHttpOK = 200;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment