| 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 #include "base/logging.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 } | |
| 16 | |
| 17 void ShowAppInfoInAppList(gfx::NativeWindow parent, | |
| 18 const gfx::Rect& app_list_bounds, | |
| 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 } | |
| 25 | |
| 26 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent, | |
| 27 const gfx::Size& size, | |
| 28 Profile* profile, | |
| 29 const extensions::Extension* app, | |
| 30 const base::Closure& close_callback) { | |
| 31 // TODO(sashab): Implement the App Info dialog on Mac. | |
| 32 NOTIMPLEMENTED(); | |
| 33 } | |
| OLD | NEW |