Chromium Code Reviews| Index: runtime/vm/disassembler.h |
| =================================================================== |
| --- runtime/vm/disassembler.h (revision 1950) |
| +++ runtime/vm/disassembler.h (working copy) |
| @@ -27,6 +27,9 @@ |
| char* human_buffer, |
| intptr_t human_size, |
| uword pc) = 0; |
| + |
| + // Print a formatted message. |
| + virtual void Print(const char* format, ...) = 0; |
|
Ivan Posva
2011/11/30 22:42:12
Can you add a TODO to remove this once we have the
regis
2011/11/30 23:11:52
Done.
|
| }; |
| @@ -43,6 +46,8 @@ |
| intptr_t human_size, |
| uword pc); |
| + virtual void Print(const char* format, ...); |
| + |
| private: |
| DISALLOW_ALLOCATION() |
| DISALLOW_COPY_AND_ASSIGN(DisassembleToStdout); |