| Index: content/renderer/media/webinbandtexttrack_impl.h | 
| diff --git a/content/renderer/media/webinbandtexttrack_impl.h b/content/renderer/media/webinbandtexttrack_impl.h | 
| deleted file mode 100644 | 
| index 293fbd3fac93919237f9cc959a88c321daaa21fe..0000000000000000000000000000000000000000 | 
| --- a/content/renderer/media/webinbandtexttrack_impl.h | 
| +++ /dev/null | 
| @@ -1,45 +0,0 @@ | 
| -// Copyright 2013 The Chromium Authors. All rights reserved. | 
| -// Use of this source code is governed by a BSD-style license that can be | 
| -// found in the LICENSE file. | 
| - | 
| -#ifndef CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_ | 
| -#define CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_ | 
| - | 
| -#include "third_party/WebKit/public/platform/WebInbandTextTrack.h" | 
| -#include "third_party/WebKit/public/platform/WebString.h" | 
| - | 
| -namespace content { | 
| - | 
| -class WebInbandTextTrackImpl : public blink::WebInbandTextTrack { | 
| - public: | 
| -  WebInbandTextTrackImpl(Kind kind, | 
| -                         const blink::WebString& label, | 
| -                         const blink::WebString& language, | 
| -                         const blink::WebString& id, | 
| -                         int index); | 
| -  virtual ~WebInbandTextTrackImpl(); | 
| - | 
| -  virtual void setClient(blink::WebInbandTextTrackClient* client); | 
| -  virtual blink::WebInbandTextTrackClient* client(); | 
| - | 
| -  virtual Kind kind() const; | 
| - | 
| -  virtual blink::WebString label() const; | 
| -  virtual blink::WebString language() const; | 
| -  virtual blink::WebString id() const; | 
| - | 
| -  virtual int textTrackIndex() const; | 
| - | 
| - private: | 
| -  blink::WebInbandTextTrackClient* client_; | 
| -  Kind kind_; | 
| -  blink::WebString label_; | 
| -  blink::WebString language_; | 
| -  blink::WebString id_; | 
| -  int index_; | 
| -  DISALLOW_COPY_AND_ASSIGN(WebInbandTextTrackImpl); | 
| -}; | 
| - | 
| -}  // namespace content | 
| - | 
| -#endif  // CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_ | 
|  |