| Index: chrome/browser/media/router/presentation_request_unittest.cc
 | 
| diff --git a/chrome/browser/media/router/presentation_request_unittest.cc b/chrome/browser/media/router/presentation_request_unittest.cc
 | 
| index 9fe5a10afb4dbfb122f9347d70fa487c2482d93a..b6716efc027799f388db108ed938fea65fb3e3f1 100644
 | 
| --- a/chrome/browser/media/router/presentation_request_unittest.cc
 | 
| +++ b/chrome/browser/media/router/presentation_request_unittest.cc
 | 
| @@ -10,7 +10,8 @@ namespace media_router {
 | 
|  TEST(PresentationRequestTest, Equals) {
 | 
|    GURL frame_url("http://www.site.com/");
 | 
|    std::vector<GURL> presentation_urls =
 | 
| -      {GURL("http://www.example.com/presentation.html")};
 | 
| +    {GURL("http://www.example.com/presentation.html"),
 | 
| +     GURL("http://www.example.net/alternate.html")};
 | 
|  
 | 
|    PresentationRequest request1(RenderFrameHostId(1, 2), presentation_urls,
 | 
|                                 frame_url);
 | 
| @@ -23,7 +24,8 @@ TEST(PresentationRequestTest, Equals) {
 | 
|    // Presentation URLs are different.
 | 
|    PresentationRequest request3(
 | 
|        RenderFrameHostId(1, 2),
 | 
| -      {GURL("http://www.example.net/presentation.html")}, frame_url);
 | 
| +      {GURL("http://www.example.net/presentation.html"),
 | 
| +       GURL("http://www.example.com/presentation.html")}, frame_url);
 | 
|    EXPECT_FALSE(request1.Equals(request3));
 | 
|  
 | 
|    // Frame URLs are different.
 | 
| @@ -33,7 +35,8 @@ TEST(PresentationRequestTest, Equals) {
 | 
|  
 | 
|    PresentationRequest request5(
 | 
|        RenderFrameHostId(1, 2),
 | 
| -      {GURL("http://www.example.com/presentation.html")},
 | 
| +      {GURL("http://www.example.com/presentation.html"),
 | 
| +       GURL("http://www.example.net/alternate.html")},
 | 
|        GURL("http://www.site.com/"));
 | 
|    EXPECT_TRUE(request1.Equals(request5));
 | 
|  }
 | 
| 
 |