Chromium Code Reviews| Index: chrome/browser/ui/views/extensions/extension_install_dialog_view.h |
| diff --git a/chrome/browser/ui/views/extensions/extension_install_dialog_view.h b/chrome/browser/ui/views/extensions/extension_install_dialog_view.h |
| index c904edd9a108307787af6c2530086c1cdffca20c..c0f53d7bd08e9c112a6cd2f38c20beddc11b0a66 100644 |
| --- a/chrome/browser/ui/views/extensions/extension_install_dialog_view.h |
| +++ b/chrome/browser/ui/views/extensions/extension_install_dialog_view.h |
| @@ -147,6 +147,15 @@ class BulletedView : public views::View { |
| DISALLOW_COPY_AND_ASSIGN(BulletedView); |
| }; |
| +// A simple view that prepends a view with an icon with the help of a grid |
| +// layout. |
| +class IconedView : public views::View { |
| + public: |
| + explicit IconedView(views::View* view, const gfx::ImageSkia& image); |
|
Finnur
2015/04/21 13:36:51
nit: Don't need explicit.
Marc Treib
2015/04/21 13:46:45
Right - thanks, done!
|
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(IconedView); |
| +}; |
| + |
| // A view to display text with an expandable details section. |
| class ExpandableContainerView : public views::View, |
| public views::ButtonListener, |