| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 from master import gitiles_poller | 5 from master import gitiles_poller |
| 6 | 6 |
| 7 | 7 |
| 8 def Update(config, c): | 8 def Update(config, c): |
| 9 webrtc_repo_url = config.Master.git_server_url + '/external/webrtc' | 9 webrtc_repo_url = config.Master.git_server_url + '/external/webrtc' |
| 10 poller = gitiles_poller.GitilesPoller(webrtc_repo_url) | 10 poller = gitiles_poller.GitilesPoller(webrtc_repo_url) |
| 11 c['change_source'].append(poller) | 11 c['change_source'].append(poller) |
| OLD | NEW |