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

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

Issue 1048343002: Enable the views-based AppInfoDialog on Mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20150330-MacViews-EnableAppList-PLUS-mac-views-browser
Patch Set: double-check now that r329097 landed Created 5 years, 7 months 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
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698