blob: 92be146a16f2f29097207625028f349104dc9852 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// 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_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_
#include "ui/gfx/native_widget_types.h"
#include "ui/views/view.h"
class Profile;
namespace extensions {
class Extension;
}
namespace views {
class ScrollView;
}
// View the information about a particular chrome application.
class AppInfoDialog : public views::View {
public:
AppInfoDialog(gfx::NativeWindow parent_window,
Profile* profile,
const extensions::Extension* app);
virtual ~AppInfoDialog();
private:
// UI elements of the dialog.
views::View* dialog_header_;
views::ScrollView* dialog_body_;
views::View* dialog_footer_;
DISALLOW_COPY_AND_ASSIGN(AppInfoDialog);
};
#endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_