| Index: trunk/src/sync/protocol/proto_value_conversions.cc
|
| ===================================================================
|
| --- trunk/src/sync/protocol/proto_value_conversions.cc (revision 239942)
|
| +++ trunk/src/sync/protocol/proto_value_conversions.cc (working copy)
|
| @@ -54,9 +54,7 @@
|
| // that instead of a StringValue.
|
| base::StringValue* MakeBytesValue(const std::string& bytes) {
|
| std::string bytes_base64;
|
| - if (!base::Base64Encode(bytes, &bytes_base64)) {
|
| - NOTREACHED();
|
| - }
|
| + base::Base64Encode(bytes, &bytes_base64);
|
| return new base::StringValue(bytes_base64);
|
| }
|
|
|
|
|