Chromium Code Reviews| Index: tools/gdb/gdb_chrome.py |
| diff --git a/tools/gdb/gdb_chrome.py b/tools/gdb/gdb_chrome.py |
| index 2d2bfa64bdad7ef76285717098c0c69cc25f4a4c..158010ebdd6dc572d4a0e467d2755e8745eb9c8b 100644 |
| --- a/tools/gdb/gdb_chrome.py |
| +++ b/tools/gdb/gdb_chrome.py |
| @@ -283,9 +283,9 @@ class SiteInstanceImplPrinter(object): |
| yield ('browsing_instance_', self.val['browsing_instance_']['ptr_']) |
| if self.val['process_']: |
| yield ('process_', typed_ptr(self.val['process_'])) |
| - if self.val['render_process_host_factory_']: |
| - yield ('render_process_host_factory_', |
| - self.val['render_process_host_factory_']) |
| + if self.val['g_render_process_host_factory_']: |
|
Jeffrey Yasskin
2015/01/14 00:41:45
Since this is static, it might make more sense jus
lfg
2015/01/14 23:31:59
Done.
|
| + yield ('g_render_process_host_factory_', |
| + self.val['g_render_process_host_factory_']) |
| pp_set.add_printer('content::SiteInstanceImpl', '^content::SiteInstanceImpl$', |
| SiteInstanceImplPrinter) |