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

Side by Side Diff: chrome/browser/media/cast_transport_host_filter.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_
6 #define CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_ 6 #define CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_
7 7
8 #include "base/id_map.h" 8 #include "base/id_map.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 22 matching lines...) Expand all
33 void SendRawEvents( 33 void SendRawEvents(
34 int32 channel_id, 34 int32 channel_id,
35 const std::vector<media::cast::PacketEvent>& packet_events, 35 const std::vector<media::cast::PacketEvent>& packet_events,
36 const std::vector<media::cast::FrameEvent>& frame_events); 36 const std::vector<media::cast::FrameEvent>& frame_events);
37 void SendRtt(int32 channel_id, uint32 ssrc, base::TimeDelta rtt); 37 void SendRtt(int32 channel_id, uint32 ssrc, base::TimeDelta rtt);
38 void SendCastMessage(int32 channel_id, 38 void SendCastMessage(int32 channel_id,
39 uint32 ssrc, 39 uint32 ssrc,
40 const media::cast::RtcpCastMessage& cast_message); 40 const media::cast::RtcpCastMessage& cast_message);
41 41
42 // BrowserMessageFilter implementation. 42 // BrowserMessageFilter implementation.
43 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 43 virtual bool OnMessageReceived(const IPC::Message& message) override;
44 44
45 // Forwarding functions. 45 // Forwarding functions.
46 void OnInitializeAudio( 46 void OnInitializeAudio(
47 int32 channel_id, 47 int32 channel_id,
48 const media::cast::CastTransportRtpConfig& config); 48 const media::cast::CastTransportRtpConfig& config);
49 void OnInitializeVideo( 49 void OnInitializeVideo(
50 int32 channel_id, 50 int32 channel_id,
51 const media::cast::CastTransportRtpConfig& config); 51 const media::cast::CastTransportRtpConfig& config);
52 void OnInsertFrame( 52 void OnInsertFrame(
53 int32 channel_id, 53 int32 channel_id,
(...skipping 25 matching lines...) Expand all
79 scoped_ptr<content::PowerSaveBlocker> power_save_blocker_; 79 scoped_ptr<content::PowerSaveBlocker> power_save_blocker_;
80 80
81 base::WeakPtrFactory<CastTransportHostFilter> weak_factory_; 81 base::WeakPtrFactory<CastTransportHostFilter> weak_factory_;
82 82
83 DISALLOW_COPY_AND_ASSIGN(CastTransportHostFilter); 83 DISALLOW_COPY_AND_ASSIGN(CastTransportHostFilter);
84 }; 84 };
85 85
86 } // namespace cast 86 } // namespace cast
87 87
88 #endif // CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_ 88 #endif // CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/locale_tests_browsertest.cc ('k') | chrome/browser/media/chrome_media_stream_infobar_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698