This source file includes following definitions.
- OnInstallSuccess
- OnInstallFailure
- Create
- OpenAppInstalledUI
- CreateInstallPromptWithBrowser
- CreateInstallPromptWithProfile
#include "chrome/browser/ui/android/extensions/extension_install_ui_android.h"
#include "base/logging.h"
void ExtensionInstallUIAndroid::OnInstallSuccess(
const extensions::Extension* extension,
SkBitmap* icon) {
NOTIMPLEMENTED();
}
void ExtensionInstallUIAndroid::OnInstallFailure(
const extensions::CrxInstallerError& error) {
NOTIMPLEMENTED();
}
ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
NOTIMPLEMENTED();
return NULL;
}
void ExtensionInstallUI::OpenAppInstalledUI(Profile* profile,
const std::string& app_id) {
NOTIMPLEMENTED();
}
ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithBrowser(
Browser* browser) {
NOTIMPLEMENTED();
return NULL;
}
ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile(
Profile* profile) {
NOTIMPLEMENTED();
return NULL;
}