Index: chrome/browser/task_management/providers/web_contents/renderer_task.h |
diff --git a/chrome/browser/task_management/providers/web_contents/renderer_task.h b/chrome/browser/task_management/providers/web_contents/renderer_task.h |
index 27ad11deeaad784bc200170e2026ff7420f869d0..d7cb6f75b0ee85906b75adfeb461cc77fb10d374 100644 |
--- a/chrome/browser/task_management/providers/web_contents/renderer_task.h |
+++ b/chrome/browser/task_management/providers/web_contents/renderer_task.h |
@@ -59,11 +59,12 @@ class RendererTask : public Task { |
content::WebContents* web_contents); |
// Prefixes the given renderer |title| with the appropriate string based on |
- // whether it's an app, an extension, or incognito. |
+ // whether it's an app, an extension, incognito or a background. |
Devlin
2015/08/04 16:05:07
"a background"? We should probably be more clear
afakhry
2015/08/04 18:31:08
background here means either view type of BACKGROU
|
static const base::string16 PrefixRendererTitle(const base::string16& title, |
bool is_app, |
Devlin
2015/08/04 16:05:07
the fact that we have is_app and is_extension is w
afakhry
2015/08/04 18:31:08
I'm not sure I totally get your suggestion here. H
ncarter (slow)
2015/08/04 18:55:19
I think devlin means that "app && !extension" ough
afakhry
2015/08/04 19:02:25
I got it. We can definitely defer this to a later
|
bool is_extension, |
- bool is_incognito); |
+ bool is_incognito, |
+ bool is_background); |
content::WebContents* web_contents() const { return web_contents_; } |