Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: content/renderer/media/render_media_log.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/media/media_stream_impl.h ('k') | content/renderer/media/video_capture_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_
6 #define CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_ 6 #define CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_
7 #pragma once 7 #pragma once
8 8
9 #include "media/base/media_log.h" 9 #include "media/base/media_log.h"
10 10
11 namespace base { 11 namespace base {
12 class MessageLoopProxy; 12 class MessageLoopProxy;
13 } 13 }
14 14
15 // RenderMediaLog is an implementation of MediaLog that passes all events to the 15 // RenderMediaLog is an implementation of MediaLog that passes all events to the
16 // browser process. 16 // browser process.
17 class RenderMediaLog : public media::MediaLog { 17 class RenderMediaLog : public media::MediaLog {
18 public: 18 public:
19 RenderMediaLog(); 19 RenderMediaLog();
20 20
21 // MediaLog implementation. 21 // MediaLog implementation.
22 virtual void AddEvent(media::MediaLogEvent* event); 22 virtual void AddEvent(media::MediaLogEvent* event) OVERRIDE;
23 23
24 private: 24 private:
25 virtual ~RenderMediaLog(); 25 virtual ~RenderMediaLog();
26 26
27 scoped_refptr<base::MessageLoopProxy> render_loop_; 27 scoped_refptr<base::MessageLoopProxy> render_loop_;
28 28
29 DISALLOW_COPY_AND_ASSIGN(RenderMediaLog); 29 DISALLOW_COPY_AND_ASSIGN(RenderMediaLog);
30 }; 30 };
31 31
32 #endif // CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_ 32 #endif // CONTENT_RENDERER_MEDIA_RENDER_MEDIA_LOG_H_
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_impl.h ('k') | content/renderer/media/video_capture_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698