| Index: sync/util/cryptographer.cc
|
| diff --git a/sync/util/cryptographer.cc b/sync/util/cryptographer.cc
|
| index 0fed51e1674f4206521861e3b85911e3f2266fa8..29f378125a728bf9adb4ff0cae1e51556952f385 100644
|
| --- a/sync/util/cryptographer.cc
|
| +++ b/sync/util/cryptographer.cc
|
| @@ -261,10 +261,8 @@ bool Cryptographer::GetBootstrapToken(std::string* token) const {
|
| return false;
|
| }
|
|
|
| - if (!base::Base64Encode(encrypted_token, token)) {
|
| - NOTREACHED();
|
| - return false;
|
| - }
|
| + base::Base64Encode(encrypted_token, token);
|
| +
|
| return true;
|
| }
|
|
|
|
|