| Index: trunk/src/chrome/browser/sync/profile_sync_service_harness.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/sync/profile_sync_service_harness.cc (revision 239920)
|
| +++ trunk/src/chrome/browser/sync/profile_sync_service_harness.cc (working copy)
|
| @@ -929,8 +929,13 @@
|
| if (marker != partner_marker) {
|
| if (VLOG_IS_ON(2)) {
|
| std::string marker_base64, partner_marker_base64;
|
| - base::Base64Encode(marker, &marker_base64);
|
| - base::Base64Encode(partner_marker, &partner_marker_base64);
|
| + if (!base::Base64Encode(marker, &marker_base64)) {
|
| + NOTREACHED();
|
| + }
|
| + if (!base::Base64Encode(
|
| + partner_marker, &partner_marker_base64)) {
|
| + NOTREACHED();
|
| + }
|
| DVLOG(2) << syncer::ModelTypeToString(i.Get()) << ": "
|
| << profile_debug_name_ << " progress marker = "
|
| << marker_base64 << ", "
|
|
|