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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 const std::string& transient_extension_id, | 60 const std::string& transient_extension_id, |
61 extensions::UninstallReason reason, | 61 extensions::UninstallReason reason, |
62 const base::Closure& deletion_done_callback, | 62 const base::Closure& deletion_done_callback, |
63 base::string16* error) const override; | 63 base::string16* error) const override; |
64 void SetLaunchType(content::BrowserContext* context, | 64 void SetLaunchType(content::BrowserContext* context, |
65 const std::string& extension_id, | 65 const std::string& extension_id, |
66 extensions::LaunchType launch_type) const override; | 66 extensions::LaunchType launch_type) const override; |
67 GURL GetIconURL(const extensions::Extension* extension, | 67 GURL GetIconURL(const extensions::Extension* extension, |
68 int icon_size, | 68 int icon_size, |
69 ExtensionIconSet::MatchType match, | 69 ExtensionIconSet::MatchType match, |
70 bool grayscale, | 70 bool grayscale) const override; |
71 bool* exists) const override; | |
72 }; | 71 }; |
73 | 72 |
74 #endif // CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGA
TE_H_ | 73 #endif // CHROME_BROWSER_EXTENSIONS_API_MANAGEMENT_CHROME_MANAGEMENT_API_DELEGA
TE_H_ |
OLD | NEW |