From 03c7a35ac08e874de3af87575df434da2ba09123 Mon Sep 17 00:00:00 2001 From: "phoglund@webrtc.org" Date: Thu, 28 Nov 2013 17:45:08 +0000 Subject: [PATCH] Fixing long lines in apprtc.py. These long lines causes the presubmit to get angry. BUG=webrtc:2678 R=braveyao@webrtc.org Review URL: https://webrtc-codereview.appspot.com/4369004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5193 4adac7df-926f-26a2-2b94-8c16560cd09d --- samples/js/apprtc/apprtc.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/samples/js/apprtc/apprtc.py b/samples/js/apprtc/apprtc.py index 824e10a706..30dfb46d4a 100644 --- a/samples/js/apprtc/apprtc.py +++ b/samples/js/apprtc/apprtc.py @@ -318,7 +318,7 @@ class MainPage(webapp2.RequestHandler): ts_pwd = self.request.get('tp') # Use "audio" and "video" to set the media stream constraints. Defined here: - # http://dev.w3.org/2011/webrtc/editor/getusermedia.html#idl-def-MediaStreamConstraints + # http://goo.gl/V7cZg # # "true" and "false" are recognized and interpreted as bools, for example: # "?audio=true&video=false" (Start an audio-only call.) @@ -336,11 +336,8 @@ class MainPage(webapp2.RequestHandler): # Keys starting with "goog" will be added to the "optional" key; all others # will be added to the "mandatory" key. # - # The audio keys are defined here: - # https://code.google.com/p/webrtc/source/browse/trunk/talk/app/webrtc/localaudiosource.cc - # - # The video keys are defined here: - # https://code.google.com/p/webrtc/source/browse/trunk/talk/app/webrtc/videosource.cc + # The audio keys are defined here: talk/app/webrtc/localaudiosource.cc + # The video keys are defined here: talk/app/webrtc/videosource.cc audio = self.request.get('audio') video = self.request.get('video')