// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_UPDATE_RECOMMENDED_MESSAGE_BOX_H_ #define CHROME_BROWSER_UI_VIEWS_UPDATE_RECOMMENDED_MESSAGE_BOX_H_ #include "base/memory/raw_ptr.h" #include "ui/gfx/native_widget_types.h" #include "ui/views/window/dialog_delegate.h" namespace views { class MessageBoxView; } // A dialog box that tells the user that an update is recommended in order for // the latest version to be put to use. class UpdateRecommendedMessageBox : public views::DialogDelegate { … }; #endif // CHROME_BROWSER_UI_VIEWS_UPDATE_RECOMMENDED_MESSAGE_BOX_H_