| Index: chrome/browser/media/router/create_presentation_connection_request_unittest.cc
 | 
| diff --git a/chrome/browser/media/router/create_presentation_connection_request_unittest.cc b/chrome/browser/media/router/create_presentation_connection_request_unittest.cc
 | 
| index 6b48c863c4165cd6606cc8b98d004de2ce6dcd63..4ae201d5c76e7662844eb581fdb88702208bd325 100644
 | 
| --- a/chrome/browser/media/router/create_presentation_connection_request_unittest.cc
 | 
| +++ b/chrome/browser/media/router/create_presentation_connection_request_unittest.cc
 | 
| @@ -12,11 +12,13 @@ namespace media_router {
 | 
|  
 | 
|  namespace {
 | 
|  
 | 
| -const char kPresentationUrl[] = "http://foo.com";
 | 
| +const char kPresentationUrl1[] = "http://www.example.com/presentation.html";
 | 
| +const char kPresentationUrl2[] = "http://www.example.net/alternate.html";
 | 
|  const char kFrameUrl[] = "http://google.com";
 | 
|  const char kPresentationId[] = "presentationId";
 | 
|  const char kRouteId[] =
 | 
| -    "urn:x-org.chromium:media:route:presentationId/cast-sink1/http://foo.com";
 | 
| +  "urn:x-org.chromium:media:route:presentationId/cast-sink1/"
 | 
| +  "http://www.example.com/presentation.html";
 | 
|  
 | 
|  }  // namespace
 | 
|  
 | 
| @@ -25,8 +27,8 @@ class CreatePresentationConnectionRequestTest : public ::testing::Test {
 | 
|    CreatePresentationConnectionRequestTest()
 | 
|        : cb_invoked_(false),
 | 
|          render_frame_host_id_(1, 2),
 | 
| -        presentation_url_(kPresentationUrl),
 | 
| -        presentation_urls_({presentation_url_}) {}
 | 
| +        presentation_url_(kPresentationUrl1),
 | 
| +        presentation_urls_({presentation_url_, GURL(kPresentationUrl2)}) {}
 | 
|  
 | 
|    ~CreatePresentationConnectionRequestTest() override {}
 | 
|  
 | 
| @@ -36,6 +38,7 @@ class CreatePresentationConnectionRequestTest : public ::testing::Test {
 | 
|      cb_invoked_ = true;
 | 
|      EXPECT_EQ(expected_info.presentation_url, actual_info.presentation_url);
 | 
|      EXPECT_EQ(expected_info.presentation_id, actual_info.presentation_id);
 | 
| +    EXPECT_EQ(route_id, kRouteId);
 | 
|    }
 | 
|  
 | 
|    void OnError(const content::PresentationError& expected_error,
 | 
| @@ -65,7 +68,7 @@ TEST_F(CreatePresentationConnectionRequestTest, Getters) {
 | 
|    content::PresentationError error(content::PRESENTATION_ERROR_UNKNOWN,
 | 
|                                     "Unknown error.");
 | 
|    CreatePresentationConnectionRequest request(
 | 
| -      render_frame_host_id_, presentation_url_, GURL(kFrameUrl),
 | 
| +      render_frame_host_id_, presentation_urls_, GURL(kFrameUrl),
 | 
|        base::Bind(&CreatePresentationConnectionRequestTest::FailOnSuccess,
 | 
|                   base::Unretained(this)),
 | 
|        base::Bind(&CreatePresentationConnectionRequestTest::OnError,
 | 
| @@ -87,7 +90,7 @@ TEST_F(CreatePresentationConnectionRequestTest, SuccessCallback) {
 | 
|                   base::Unretained(this), session_info),
 | 
|        base::Bind(&CreatePresentationConnectionRequestTest::FailOnError,
 | 
|                   base::Unretained(this)));
 | 
| -  request.InvokeSuccessCallback(kPresentationId, kRouteId);
 | 
| +  request.InvokeSuccessCallback(kPresentationId, presentation_url_, kRouteId);
 | 
|    EXPECT_TRUE(cb_invoked_);
 | 
|  }
 | 
|  
 | 
| @@ -96,7 +99,7 @@ TEST_F(CreatePresentationConnectionRequestTest, ErrorCallback) {
 | 
|        content::PRESENTATION_ERROR_SESSION_REQUEST_CANCELLED,
 | 
|        "This is an error message");
 | 
|    CreatePresentationConnectionRequest request(
 | 
| -      render_frame_host_id_, presentation_url_, GURL(kFrameUrl),
 | 
| +      render_frame_host_id_, presentation_urls_, GURL(kFrameUrl),
 | 
|        base::Bind(&CreatePresentationConnectionRequestTest::FailOnSuccess,
 | 
|                   base::Unretained(this)),
 | 
|        base::Bind(&CreatePresentationConnectionRequestTest::OnError,
 | 
| 
 |