OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "chrome/browser/ui/apps/app_info_dialog.h" | 6 #include "chrome/browser/ui/apps/app_info_dialog.h" |
7 | 7 |
8 void ShowAppInfoInAppList(gfx::NativeWindow parent, | 8 void ShowAppInfoModally(web_modal::ModalDialogHost* host, |
9 const gfx::Rect& app_list_bounds, | 9 const gfx::Size& size, |
10 Profile* profile, | 10 Profile* profile, |
11 const extensions::Extension* app, | 11 const extensions::Extension* app, |
12 const base::Closure& close_callback) { | 12 const base::Closure& close_callback) { |
13 // TODO(sashab): Implement the App Info dialog on Mac. | 13 // TODO(sashab): Implement the App Info dialog on Mac. |
14 NOTIMPLEMENTED(); | 14 NOTIMPLEMENTED(); |
15 } | 15 } |
16 | |
17 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent, | |
18 const gfx::Size& size, | |
19 Profile* profile, | |
20 const extensions::Extension* app, | |
21 const base::Closure& close_callback) { | |
22 // TODO(sashab): Implement the App Info dialog on Mac. | |
23 NOTIMPLEMENTED(); | |
24 } | |
OLD | NEW |