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 #ifndef CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGATE_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGATE_
H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGATE_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGATE_
H_ |
7 | 7 |
8 #include "base/task/cancelable_task_tracker.h" | 8 #include "base/task/cancelable_task_tracker.h" |
9 #include "chrome/browser/extensions/extension_install_prompt.h" | 9 #include "chrome/browser/extensions/extension_install_prompt.h" |
10 #include "chrome/browser/extensions/extension_uninstall_dialog.h" | 10 #include "chrome/browser/extensions/extension_uninstall_dialog.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 const base::Callback<void(bool)>& callback) const override; | 37 const base::Callback<void(bool)>& callback) const override; |
38 std::unique_ptr<extensions::RequirementsChecker> CreateRequirementsChecker() | 38 std::unique_ptr<extensions::RequirementsChecker> CreateRequirementsChecker() |
39 const override; | 39 const override; |
40 std::unique_ptr<extensions::UninstallDialogDelegate> | 40 std::unique_ptr<extensions::UninstallDialogDelegate> |
41 UninstallFunctionDelegate( | 41 UninstallFunctionDelegate( |
42 extensions::ManagementUninstallFunctionBase* function, | 42 extensions::ManagementUninstallFunctionBase* function, |
43 const extensions::Extension* target_extension, | 43 const extensions::Extension* target_extension, |
44 bool show_programmatic_uninstall_ui) const override; | 44 bool show_programmatic_uninstall_ui) const override; |
45 bool CreateAppShortcutFunctionDelegate( | 45 bool CreateAppShortcutFunctionDelegate( |
46 extensions::ManagementCreateAppShortcutFunction* function, | 46 extensions::ManagementCreateAppShortcutFunction* function, |
47 const extensions::Extension* extension) const override; | 47 const extensions::Extension* extension, |
| 48 std::string* error) const override; |
48 std::unique_ptr<extensions::AppForLinkDelegate> | 49 std::unique_ptr<extensions::AppForLinkDelegate> |
49 GenerateAppForLinkFunctionDelegate( | 50 GenerateAppForLinkFunctionDelegate( |
50 extensions::ManagementGenerateAppForLinkFunction* function, | 51 extensions::ManagementGenerateAppForLinkFunction* function, |
51 content::BrowserContext* context, | 52 content::BrowserContext* context, |
52 const std::string& title, | 53 const std::string& title, |
53 const GURL& launch_url) const override; | 54 const GURL& launch_url) const override; |
54 bool CanHostedAppsOpenInWindows() const override; | 55 bool CanHostedAppsOpenInWindows() const override; |
55 bool IsNewBookmarkAppsEnabled() const override; | 56 bool IsNewBookmarkAppsEnabled() const override; |
56 void EnableExtension(content::BrowserContext* context, | 57 void EnableExtension(content::BrowserContext* context, |
57 const std::string& extension_id) const override; | 58 const std::string& extension_id) const override; |
(...skipping 10 matching lines...) Expand all Loading... |
68 const std::string& extension_id, | 69 const std::string& extension_id, |
69 extensions::LaunchType launch_type) const override; | 70 extensions::LaunchType launch_type) const override; |
70 GURL GetIconURL(const extensions::Extension* extension, | 71 GURL GetIconURL(const extensions::Extension* extension, |
71 int icon_size, | 72 int icon_size, |
72 ExtensionIconSet::MatchType match, | 73 ExtensionIconSet::MatchType match, |
73 bool grayscale, | 74 bool grayscale, |
74 bool* exists) const override; | 75 bool* exists) const override; |
75 }; | 76 }; |
76 | 77 |
77 #endif // CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGA
TE_H_ | 78 #endif // CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGA
TE_H_ |
OLD | NEW |