| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/extensions/extension_install_ui_android.h" | 5 #include "chrome/browser/extensions/extension_install_ui_android.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 void ExtensionInstallUIAndroid::OnInstallSuccess( | 9 void ExtensionInstallUIAndroid::OnInstallSuccess( |
| 10 const extensions::Extension* extension, SkBitmap* icon) { | 10 const extensions::Extension* extension, SkBitmap* icon) { |
| 11 NOTIMPLEMENTED(); | 11 NOTIMPLEMENTED(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 void ExtensionInstallUIAndroid::OnInstallFailure( | 14 void ExtensionInstallUIAndroid::OnInstallFailure( |
| 15 const CrxInstallerError& error) { | 15 const CrxInstallerError& error) { |
| 16 NOTIMPLEMENTED(); | 16 NOTIMPLEMENTED(); |
| 17 } | 17 } |
| 18 | 18 |
| 19 void ExtensionInstallUIAndroid::SetSkipPostInstallUI(bool skip_ui) { | 19 void ExtensionInstallUIAndroid::SetSkipPostInstallUI(bool skip_ui) { |
| 20 NOTIMPLEMENTED(); | 20 NOTIMPLEMENTED(); |
| 21 } | 21 } |
| 22 | 22 |
| 23 // static | 23 // static |
| 24 ExtensionInstallUI* ExtensionInstallUI::Create(Browser* browser) { | 24 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) { |
| 25 NOTIMPLEMENTED(); | 25 NOTIMPLEMENTED(); |
| 26 return NULL; | 26 return NULL; |
| 27 } | 27 } |
| 28 | 28 |
| 29 // static | 29 // static |
| 30 void ExtensionInstallUI::OpenAppInstalledUI( | 30 void ExtensionInstallUI::OpenAppInstalledUI( |
| 31 Browser* browser, const std::string& app_id) { | 31 Browser* browser, const std::string& app_id) { |
| 32 NOTIMPLEMENTED(); | 32 NOTIMPLEMENTED(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 // static | 35 // static |
| 36 void ExtensionInstallUI::DisableFailureUIForTests() { | 36 void ExtensionInstallUI::DisableFailureUIForTests() { |
| 37 NOTIMPLEMENTED(); | 37 NOTIMPLEMENTED(); |
| 38 } | 38 } |
| OLD | NEW |