| Index: chrome/browser/ui/views/first_run_bubble.cc
|
| diff --git a/chrome/browser/ui/views/first_run_bubble.cc b/chrome/browser/ui/views/first_run_bubble.cc
|
| index 1849b585103a9e7483da08af2eed61ebf036645e..96797fc50cb7746c0233f9198380df83073aaa7a 100644
|
| --- a/chrome/browser/ui/views/first_run_bubble.cc
|
| +++ b/chrome/browser/ui/views/first_run_bubble.cc
|
| @@ -26,7 +26,10 @@ const int kRightInset = 2;
|
| } // namespace
|
|
|
| namespace first_run {
|
| -void ShowFirstRunDialog(Profile* profile) {}
|
| +bool ShowFirstRunDialog(Profile* profile) {
|
| + // There is no first run dialog on Windows.
|
| + return false;
|
| +}
|
| } // namespace first_run
|
|
|
| // static
|
|
|