| Index: chrome/browser/first_run/first_run.cc
|
| diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
|
| index d38463871d87d70741f70923c637358f9165fb1e..8d77bbd930fd346dd09981dfecb8f86ce6163143 100644
|
| --- a/chrome/browser/first_run/first_run.cc
|
| +++ b/chrome/browser/first_run/first_run.cc
|
| @@ -519,6 +519,10 @@ void FirstRunBubbleLauncher::Observe(
|
| if (contents->GetURL().host() == chrome::kChromeUISyncPromoHost)
|
| return;
|
|
|
| + // Suppress the first run bubble if 'make chrome metro' flow is showing.
|
| + if (contents->GetURL().host() == chrome::kChromeUIMetroFlowHost)
|
| + return;
|
| +
|
| // Suppress the first run bubble if the NTP sync promo bubble is showing.
|
| if (contents->GetURL().host() == chrome::kChromeUINewTabHost) {
|
| NewTabUI* new_tab_ui =
|
|
|