Index: sync/protocol/proto_value_conversions.cc |
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc |
index 0217c5c0076e71dc1853b31340f138e910cdb83c..cdb999ea0dd873c1fed6ad65bbe2f270e07c7481 100644 |
--- a/sync/protocol/proto_value_conversions.cc |
+++ b/sync/protocol/proto_value_conversions.cc |
@@ -54,9 +54,7 @@ base::StringValue* MakeInt64Value(int64 x) { |
// 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); |
} |