| Index: chrome/browser/sync/chrome_sync_client.cc
|
| diff --git a/chrome/browser/sync/chrome_sync_client.cc b/chrome/browser/sync/chrome_sync_client.cc
|
| index a549fbb4c3484a63e1a4731418289a2a7dfc8ea4..5f0fa8172e97129d1ac63aac0a66ef5ffc3d5524 100644
|
| --- a/chrome/browser/sync/chrome_sync_client.cc
|
| +++ b/chrome/browser/sync/chrome_sync_client.cc
|
| @@ -151,7 +151,7 @@ class SyncSessionsClientImpl : public sync_sessions::SyncSessionsClient {
|
| profile_, ServiceAccessType::EXPLICIT_ACCESS);
|
| }
|
| bool ShouldSyncURL(const GURL& url) const override {
|
| - if (url == GURL(chrome::kChromeUIHistoryURL)) {
|
| + if (url.spec() == chrome::kChromeUIHistoryURL) {
|
| // The history page is treated specially as we want it to trigger syncable
|
| // events for UI purposes.
|
| return true;
|
|
|