OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_TAB_H_ | |
6 #define CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_TAB_H_ | |
7 | |
8 #include "ui/views/view.h" | |
9 | |
10 class Profile; | |
11 | |
12 namespace extensions { | |
13 class Extension; | |
14 } | |
15 namespace views { | |
16 class View; | |
17 } | |
18 | |
19 // A tab in the App Info dialog that displays information for a particular | |
20 // profile and app. Tabs in the App Info dialog extend this class. | |
21 class AppInfoTab : public views::View { | |
22 public: | |
23 AppInfoTab(Profile* profile, const extensions::Extension* app); | |
24 | |
25 virtual ~AppInfoTab(); | |
26 | |
27 protected: | |
28 Profile* profile_; | |
29 const extensions::Extension* app_; | |
30 | |
31 private: | |
32 DISALLOW_COPY_AND_ASSIGN(AppInfoTab); | |
33 }; | |
34 | |
35 #endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_TAB_H_ | |
OLD | NEW |