Index: chrome/browser/ui/startup/default_browser_prompt.h |
diff --git a/chrome/browser/ui/startup/default_browser_prompt.h b/chrome/browser/ui/startup/default_browser_prompt.h |
index 947ceb9db05cfa5bb20c89b6dbead15d46f28fb7..4376bf93fb802cd58571c36cef4143545ee14b55 100644 |
--- a/chrome/browser/ui/startup/default_browser_prompt.h |
+++ b/chrome/browser/ui/startup/default_browser_prompt.h |
@@ -10,7 +10,10 @@ class Profile; |
namespace chrome { |
// Shows a prompt UI to set the default browser if necessary. |
-void ShowDefaultBrowserPrompt(Profile* profile); |
+// Unless |permit_prompt_on_first_run| is true, this function is a noop on |
+// first run. |
+void ShowDefaultBrowserPrompt(Profile* profile, |
+ bool permit_prompt_on_first_run); |
sky
2012/07/25 16:09:57
Why is this taking a boolean indicating if does an
motek.
2012/07/26 12:11:04
Well, mainly because I wanted to preserve the call
|
// Shows a prompt UI to set the default browser on first run |
// (if necessary and permitted). |