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

Unified Diff: content/renderer/p2p/port_allocator.h

Issue 10382003: Changes needed to roll libjingle r141 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/p2p/port_allocator.h
===================================================================
--- content/renderer/p2p/port_allocator.h (revision 135898)
+++ content/renderer/p2p/port_allocator.h (working copy)
@@ -34,9 +34,11 @@
const webkit_glue::P2PTransport::Config& config);
virtual ~P2PPortAllocator();
- virtual cricket::PortAllocatorSession* CreateSession(
+ virtual cricket::PortAllocatorSession* CreateSessionInternal(
const std::string& channel_name,
- int component) OVERRIDE;
+ int component,
+ const std::string& ice_ufrag,
Sergey Ulanov 2012/05/09 18:58:00 ise_username_fragment or just ice_username?
Mallinath (Gone from Chromium) 2012/05/09 22:04:22 Done.
+ const std::string& ice_pwd) OVERRIDE;
Sergey Ulanov 2012/05/09 18:58:00 ice_password?
Mallinath (Gone from Chromium) 2012/05/09 22:04:22 Done.
private:
friend class P2PPortAllocatorSession;
@@ -54,7 +56,9 @@
P2PPortAllocatorSession(
P2PPortAllocator* allocator,
const std::string& channel_name,
- int candidate);
+ int component,
+ const std::string& ice_ufrag,
Sergey Ulanov 2012/05/09 18:58:00 same here
Mallinath (Gone from Chromium) 2012/05/09 22:04:22 Done.
Mallinath (Gone from Chromium) 2012/05/09 22:04:22 Done.
+ const std::string& ice_pwd);
virtual ~P2PPortAllocatorSession();
// WebKit::WebURLLoaderClient overrides.
« no previous file with comments | « DEPS ('k') | content/renderer/p2p/port_allocator.cc » ('j') | jingle/glue/utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698