Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: tools/gdb/gdb_chrome.py

Issue 827923007: Fix gdb pretty printing for content::SiteInstanceImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698