Index: chrome/browser/ui/views/apps/app_info_dialog/app_info_tab_manage_views.cc |
diff --git a/chrome/browser/ui/views/apps/app_info_dialog/app_info_tab_manage_views.cc b/chrome/browser/ui/views/apps/app_info_dialog/app_info_tab_manage_views.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1dd16fa376b3b51f4d2c4d5ac9aa0d4bb69eb127 |
--- /dev/null |
+++ b/chrome/browser/ui/views/apps/app_info_dialog/app_info_tab_manage_views.cc |
@@ -0,0 +1,16 @@ |
+// 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. |
+ |
+#include "chrome/browser/ui/views/apps/app_info_dialog/app_info_tab_manage_views.h" |
+ |
+#include "ui/gfx/native_widget_types.h" |
+ |
+AppInfoManageTabView::AppInfoManageTabView(gfx::NativeWindow parent_window, |
+ Profile* profile, |
+ const extensions::Extension* app, |
+ const base::Closure& close_callback) |
+ : AppInfoTabView(parent_window, profile, app, close_callback) { |
Matt Giuca
2014/03/04 01:36:57
Nit: // TODO(sashab): Populate this tab.
(Also, n
sashab
2014/03/04 04:10:58
Done.
|
+} |
+ |
+AppInfoManageTabView::~AppInfoManageTabView() {} |