Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / android / extensions / extension_install_ui_android.cc
blob91cce79a5a684e3e29a558fc59beb445c476d619
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/android/extensions/extension_install_ui_android.h"
7 #include "base/logging.h"
9 void ExtensionInstallUIAndroid::OnInstallSuccess(
10 const extensions::Extension* extension,
11 SkBitmap* icon) {
12 NOTIMPLEMENTED();
15 void ExtensionInstallUIAndroid::OnInstallFailure(
16 const extensions::CrxInstallerError& error) {
17 NOTIMPLEMENTED();
20 // static
21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
22 NOTIMPLEMENTED();
23 return NULL;
26 // static
27 void ExtensionInstallUI::OpenAppInstalledUI(Profile* profile,
28 const std::string& app_id) {
29 NOTIMPLEMENTED();
32 // static
33 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithBrowser(
34 Browser* browser) {
35 NOTIMPLEMENTED();
36 return NULL;
39 // static
40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile(
41 Profile* profile) {
42 NOTIMPLEMENTED();
43 return NULL;