| 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/ui/android/extensions/extension_install_ui_android.h" | 5 #include "chrome/browser/ui/android/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, | 10 const extensions::Extension* extension, |
| 11 SkBitmap* icon) { | 11 const SkBitmap* icon) { |
| 12 NOTIMPLEMENTED(); | 12 NOTIMPLEMENTED(); |
| 13 } | 13 } |
| 14 | 14 |
| 15 void ExtensionInstallUIAndroid::OnInstallFailure( | 15 void ExtensionInstallUIAndroid::OnInstallFailure( |
| 16 const extensions::CrxInstallerError& error) { | 16 const extensions::CrxInstallerError& error) { |
| 17 NOTIMPLEMENTED(); | 17 NOTIMPLEMENTED(); |
| 18 } | 18 } |
| 19 | 19 |
| 20 // static | 20 // static |
| 21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) { | 21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 35 NOTIMPLEMENTED(); | 35 NOTIMPLEMENTED(); |
| 36 return NULL; | 36 return NULL; |
| 37 } | 37 } |
| 38 | 38 |
| 39 // static | 39 // static |
| 40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile( | 40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile( |
| 41 Profile* profile) { | 41 Profile* profile) { |
| 42 NOTIMPLEMENTED(); | 42 NOTIMPLEMENTED(); |
| 43 return NULL; | 43 return NULL; |
| 44 } | 44 } |
| OLD | NEW |