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