| Index: chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher_browsertest.cc | 
| diff --git a/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher_browsertest.cc b/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher_browsertest.cc | 
| index cd0caf1ae9b72d51fed0148c92ef0db1c5c7443b..afc8d61f27a6308537189d15c86dfc63a1282a74 100644 | 
| --- a/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher_browsertest.cc | 
| +++ b/chrome/browser/notifications/sync_notifier/notification_bitmap_fetcher_browsertest.cc | 
| @@ -104,7 +104,7 @@ IN_PROC_BROWSER_TEST_F(NotificationBitmapFetcherBrowserTest, | 
|  | 
| NotificationBitmapFetcher fetcher(url, &delegate); | 
|  | 
| -  url_fetcher_factory_->SetFakeResponse(url.spec(), image_string, true); | 
| +  url_fetcher_factory_->SetFakeResponse(url, image_string, true); | 
|  | 
| // We expect that the image decoder will get called and return | 
| // an image in a callback to OnImageDecoded(). | 
| @@ -154,7 +154,7 @@ IN_PROC_BROWSER_TEST_F(NotificationBitmapFetcherBrowserTest, | 
|  | 
| NotificationBitmapFetcher fetcher(url, &delegate); | 
|  | 
| -  url_fetcher_factory_->SetFakeResponse(url.spec(), std::string(), false); | 
| +  url_fetcher_factory_->SetFakeResponse(url, std::string(), false); | 
|  | 
| fetcher.Start(browser()->profile()); | 
|  | 
| @@ -170,7 +170,7 @@ IN_PROC_BROWSER_TEST_F(NotificationBitmapFetcherBrowserTest, | 
| NotificationBitmapFetcherTestDelegate delegate(kAsyncCall); | 
| NotificationBitmapFetcher fetcher(url, &delegate); | 
| url_fetcher_factory_->SetFakeResponse( | 
| -      url.spec(), std::string("Not a real bitmap"), true); | 
| +      url, std::string("Not a real bitmap"), true); | 
|  | 
| fetcher.Start(browser()->profile()); | 
|  | 
|  |