Chromium Code Reviews| Index: vm/raw_object_snapshot.cc |
| =================================================================== |
| --- vm/raw_object_snapshot.cc (revision 10270) |
| +++ vm/raw_object_snapshot.cc (working copy) |
| @@ -618,6 +618,9 @@ |
| // Read in the literal/identifier token array. |
| *(reader->TokensHandle()) ^= reader->ReadObjectImpl(); |
| token_stream.SetTokenObjects(*(reader->TokensHandle())); |
| + // Rean in the private key in use by the token stream. |
|
hausner
2012/08/10 16:13:01
Rean -> Read
Ivan Posva
2012/08/10 16:57:20
Done.
|
| + *(reader->StringHandle()) ^= reader->ReadObjectImpl(); |
| + token_stream.SetPrivateKey(*(reader->StringHandle())); |
| return token_stream.raw(); |
| } |
| @@ -644,6 +647,8 @@ |
| // Write out the literal/identifier token array. |
| writer->WriteObjectImpl(ptr()->token_objects_); |
| + // Write out the private key in use by the token stream. |
| + writer->WriteObjectImpl(ptr()->private_key_); |
| } |