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

Side by Side Diff: chrome/renderer/media/cast_session.h

Issue 173713004: Cast: Plumb raw event logs to cast extension, install EncodingEventSubscriber on CastSessionDelegat… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix subscriber leak Created 6 years, 10 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/media/cast_session.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_RENDERER_MEDIA_CAST_SESSION_H_ 5 #ifndef CHROME_RENDERER_MEDIA_CAST_SESSION_H_
6 #define CHROME_RENDERER_MEDIA_CAST_SESSION_H_ 6 #define CHROME_RENDERER_MEDIA_CAST_SESSION_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 23 matching lines...) Expand all
34 34
35 // This class represents a Cast session and allows the session to be 35 // This class represents a Cast session and allows the session to be
36 // configured on the main thread. Actual work is forwarded to 36 // configured on the main thread. Actual work is forwarded to
37 // CastSessionDelegate on the IO thread. 37 // CastSessionDelegate on the IO thread.
38 class CastSession : public base::RefCounted<CastSession> { 38 class CastSession : public base::RefCounted<CastSession> {
39 public: 39 public:
40 typedef 40 typedef
41 base::Callback<void(const scoped_refptr<media::cast::FrameInput>&)> 41 base::Callback<void(const scoped_refptr<media::cast::FrameInput>&)>
42 FrameInputAvailableCallback; 42 FrameInputAvailableCallback;
43 typedef base::Callback<void(const std::vector<char>&)> SendPacketCallback; 43 typedef base::Callback<void(const std::vector<char>&)> SendPacketCallback;
44 typedef base::Callback<void(scoped_ptr<std::string>)> EventLogsCallback;
44 45
45 CastSession(); 46 CastSession();
46 47
47 // Start encoding of audio and video using the provided configuration. 48 // Start encoding of audio and video using the provided configuration.
48 // 49 //
49 // When Cast sender is started and ready to be used 50 // When Cast sender is started and ready to be used
50 // media::cast::FrameInput will be given through the callback. The 51 // media::cast::FrameInput will be given through the callback. The
51 // callback will be made on the main thread. 52 // callback will be made on the main thread.
52 void StartAudio(const media::cast::AudioSenderConfig& config, 53 void StartAudio(const media::cast::AudioSenderConfig& config,
53 const FrameInputAvailableCallback& callback); 54 const FrameInputAvailableCallback& callback);
54 void StartVideo(const media::cast::VideoSenderConfig& config, 55 void StartVideo(const media::cast::VideoSenderConfig& config,
55 const FrameInputAvailableCallback& callback); 56 const FrameInputAvailableCallback& callback);
56 void StartUDP(const net::IPEndPoint& local_endpoint, 57 void StartUDP(const net::IPEndPoint& local_endpoint,
57 const net::IPEndPoint& remote_endpoint); 58 const net::IPEndPoint& remote_endpoint);
58 59
60 // Get raw event logs and provide the results in |callback| on main thread.
61 void GetEventLogsAndReset(const EventLogsCallback& callback);
62
59 private: 63 private:
60 friend class base::RefCounted<CastSession>; 64 friend class base::RefCounted<CastSession>;
61 virtual ~CastSession(); 65 virtual ~CastSession();
62 66
63 // This member should never be dereferenced on the main thread. 67 // This member should never be dereferenced on the main thread.
64 // CastSessionDelegate lives only on the IO thread. It is always 68 // CastSessionDelegate lives only on the IO thread. It is always
65 // safe to post task on the IO thread to access CastSessionDelegate 69 // safe to post task on the IO thread to access CastSessionDelegate
66 // because it is owned by this object. 70 // because it is owned by this object.
67 scoped_ptr<CastSessionDelegate> delegate_; 71 scoped_ptr<CastSessionDelegate> delegate_;
68 72
69 // Proxy to the IO message loop. 73 // Proxy to the IO message loop.
70 const scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; 74 const scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_;
71 75
72 DISALLOW_COPY_AND_ASSIGN(CastSession); 76 DISALLOW_COPY_AND_ASSIGN(CastSession);
73 }; 77 };
74 78
75 #endif // CHROME_RENDERER_MEDIA_CAST_SESSION_H_ 79 #endif // CHROME_RENDERER_MEDIA_CAST_SESSION_H_
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/media/cast_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698