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

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

Issue 899173002: Replace Webstore link with app info dialog link in chrome://apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 10 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
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 #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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698