Index: components/webcrypto/jwk.cc |
diff --git a/components/webcrypto/jwk.cc b/components/webcrypto/jwk.cc |
index 4e1781d20214587d2d962070fb57a0996853220c..8a9ad74b8631ef7accd694abd15e6dd3b89632a5 100644 |
--- a/components/webcrypto/jwk.cc |
+++ b/components/webcrypto/jwk.cc |
@@ -369,7 +369,7 @@ void JwkWriter::SetBytes(const std::string& member_name, |
void JwkWriter::ToJson(std::vector<uint8_t>* utf8_bytes) const { |
std::string json; |
- base::JSONWriter::Write(&dict_, &json); |
+ base::JSONWriter::Write(dict_, &json); |
utf8_bytes->assign(json.begin(), json.end()); |
} |