Home | History | Annotate | Download | only in extensions
      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.
      4 
      5 #include "chrome/browser/ui/android/extensions/extension_install_ui_android.h"
      6 
      7 #include "base/logging.h"
      8 
      9 void ExtensionInstallUIAndroid::OnInstallSuccess(
     10     const extensions::Extension* extension,
     11     SkBitmap* icon) {
     12   NOTIMPLEMENTED();
     13 }
     14 
     15 void ExtensionInstallUIAndroid::OnInstallFailure(
     16     const extensions::CrxInstallerError& error) {
     17   NOTIMPLEMENTED();
     18 }
     19 
     20 // static
     21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
     22   NOTIMPLEMENTED();
     23   return NULL;
     24 }
     25 
     26 // static
     27 void ExtensionInstallUI::OpenAppInstalledUI(Profile* profile,
     28                                             const std::string& app_id) {
     29   NOTIMPLEMENTED();
     30 }
     31 
     32 // static
     33 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithBrowser(
     34     Browser* browser) {
     35   NOTIMPLEMENTED();
     36   return NULL;
     37 }
     38 
     39 // static
     40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile(
     41     Profile* profile) {
     42   NOTIMPLEMENTED();
     43   return NULL;
     44 }
     45