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

Unified Diff: chrome/renderer/extensions/webrtc_native_handler.h

Issue 83043005: Cast Extensions API: Factory method for creating a cast session (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove castSendTransport.create Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/extensions/webrtc_native_handler.h
diff --git a/chrome/renderer/extensions/webrtc_native_handler.h b/chrome/renderer/extensions/webrtc_native_handler.h
index d2fcd9fe34b52feb592077cdf4d239ca58594f2f..78ad763fee7e0ab38e6231af237a676db05686c6 100644
--- a/chrome/renderer/extensions/webrtc_native_handler.h
+++ b/chrome/renderer/extensions/webrtc_native_handler.h
@@ -25,8 +25,9 @@ class WebRtcNativeHandler : public ObjectBackedNativeHandler {
virtual ~WebRtcNativeHandler();
private:
- void CreateCastSendTransport(
+ void CreateCastSession(
const v8::FunctionCallbackInfo<v8::Value>& args);
+
void DestroyCastSendTransport(
const v8::FunctionCallbackInfo<v8::Value>& args);
void CreateParamsCastSendTransport(
@@ -38,8 +39,6 @@ class WebRtcNativeHandler : public ObjectBackedNativeHandler {
void StopCastSendTransport(
const v8::FunctionCallbackInfo<v8::Value>& args);
- void CreateCastUdpTransport(
- const v8::FunctionCallbackInfo<v8::Value>& args);
void DestroyCastUdpTransport(
const v8::FunctionCallbackInfo<v8::Value>& args);
void StartCastUdpTransport(

Powered by Google App Engine
This is Rietveld 408576698