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 #include "ui/gfx/geometry/size.h" |
| 8 |
| 9 bool CanShowAppInfoDialog() { |
| 10 return false; |
| 11 } |
| 12 |
| 13 gfx::Size GetAppInfoNativeDialogSize() { |
| 14 return gfx::Size(); |
| 15 } |
7 | 16 |
8 void ShowAppInfoInAppList(gfx::NativeWindow parent, | 17 void ShowAppInfoInAppList(gfx::NativeWindow parent, |
9 const gfx::Rect& app_list_bounds, | 18 const gfx::Rect& app_list_bounds, |
10 Profile* profile, | 19 Profile* profile, |
11 const extensions::Extension* app, | 20 const extensions::Extension* app, |
12 const base::Closure& close_callback) { | 21 const base::Closure& close_callback) { |
13 // TODO(sashab): Implement the App Info dialog on Mac. | 22 // TODO(sashab): Implement the App Info dialog on Mac. |
14 NOTIMPLEMENTED(); | 23 NOTIMPLEMENTED(); |
15 } | 24 } |
16 | 25 |
17 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent, | 26 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent, |
18 const gfx::Size& size, | 27 const gfx::Size& size, |
19 Profile* profile, | 28 Profile* profile, |
20 const extensions::Extension* app, | 29 const extensions::Extension* app, |
21 const base::Closure& close_callback) { | 30 const base::Closure& close_callback) { |
22 // TODO(sashab): Implement the App Info dialog on Mac. | 31 // TODO(sashab): Implement the App Info dialog on Mac. |
23 NOTIMPLEMENTED(); | 32 NOTIMPLEMENTED(); |
24 } | 33 } |
OLD | NEW |