Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Side by Side Diff: chrome/browser/ui/cocoa/apps/app_info_dialog_cocoa.mm

Issue 719203003: Parent the AppInfoDialog using a ModalDialogHost Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698