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

Side by Side Diff: chrome/browser/ui/apps/app_info_dialog.h

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 #ifndef CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_ 5 #ifndef CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_
6 #define CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_ 6 #define CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 10
11 class Profile; 11 class Profile;
12 12
13 namespace extensions { 13 namespace extensions {
14 class Extension; 14 class Extension;
15 } 15 }
16 16
17 namespace gfx { 17 namespace gfx {
18 class Rect; 18 class Rect;
19 class Size; 19 class Size;
20 } 20 }
21 21
22 // Used for UMA to track where the App Info dialog is launched from. 22 // Used for UMA to track where the App Info dialog is launched from.
23 enum AppInfoLaunchSource { 23 enum AppInfoLaunchSource {
24 FROM_APP_LIST, // Launched from the app list context menu. 24 FROM_APP_LIST, // Launched from the app list context menu.
25 FROM_EXTENSIONS_PAGE, // Launched from the chrome://extensions page. 25 FROM_EXTENSIONS_PAGE, // Launched from the chrome://extensions page.
26 FROM_APPS_PAGE, // Launched from chrome://apps context menu.
26 NUM_LAUNCH_SOURCES, 27 NUM_LAUNCH_SOURCES,
27 }; 28 };
28 29
30 // TODO(tsergeant): Move these methods into a class
31 // Returns true if the app info dialog is available on the current platform.
32 bool CanShowAppInfoDialog();
33
34 // Returns the size of the native window container for the app info dialog.
35 gfx::Size GetAppInfoNativeDialogSize();
36
29 // Shows the chrome app information as a frameless window for the given |app| 37 // Shows the chrome app information as a frameless window for the given |app|
30 // and |profile| at the given |app_list_bounds|. Appears 'inside' the app list. 38 // and |profile| at the given |app_list_bounds|. Appears 'inside' the app list.
31 void ShowAppInfoInAppList(gfx::NativeWindow parent, 39 void ShowAppInfoInAppList(gfx::NativeWindow parent,
32 const gfx::Rect& app_list_bounds, 40 const gfx::Rect& app_list_bounds,
33 Profile* profile, 41 Profile* profile,
34 const extensions::Extension* app, 42 const extensions::Extension* app,
35 const base::Closure& close_callback); 43 const base::Closure& close_callback);
36 44
37 // Shows the chrome app information in a native dialog box of the given |size|. 45 // Shows the chrome app information in a native dialog box of the given |size|.
38 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent, 46 void ShowAppInfoInNativeDialog(gfx::NativeWindow parent,
39 const gfx::Size& size, 47 const gfx::Size& size,
40 Profile* profile, 48 Profile* profile,
41 const extensions::Extension* app, 49 const extensions::Extension* app,
42 const base::Closure& close_callback); 50 const base::Closure& close_callback);
43 51
44 #endif // CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_ 52 #endif // CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698