| Index: chrome/browser/media/router/presentation_request.h
 | 
| diff --git a/chrome/browser/media/router/presentation_request.h b/chrome/browser/media/router/presentation_request.h
 | 
| index 56265c9acaea4b198c48950db0c63974e9370654..1879ec1321576be25101856fd138f6f1ae1b4e59 100644
 | 
| --- a/chrome/browser/media/router/presentation_request.h
 | 
| +++ b/chrome/browser/media/router/presentation_request.h
 | 
| @@ -32,8 +32,9 @@ class PresentationRequest {
 | 
|    const RenderFrameHostId& render_frame_host_id() const {
 | 
|      return render_frame_host_id_;
 | 
|    }
 | 
| -  // TODO(crbug.com/627655): Use multiple URLs.
 | 
| -  const GURL& presentation_url() const { return presentation_urls_[0]; }
 | 
| +  const std::vector<GURL>& presentation_urls() const {
 | 
| +    return presentation_urls_;
 | 
| +  }
 | 
|    const GURL& frame_url() const { return frame_url_; }
 | 
|  
 | 
|   private:
 | 
| 
 |