| OLD | NEW |
| (Empty) | |
| 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/extensions/extension_error_ui_android.h" |
| 6 |
| 7 ExtensionErrorUIAndroid::ExtensionErrorUIAndroid( |
| 8 ExtensionService* extension_service) |
| 9 : ExtensionErrorUI(extension_service) { |
| 10 } |
| 11 |
| 12 ExtensionErrorUIAndroid::~ExtensionErrorUIAndroid() { |
| 13 } |
| 14 |
| 15 // ExtensionErrorUI implementation: |
| 16 bool ExtensionErrorUIAndroid::ShowErrorInBubbleView() { |
| 17 NOTIMPLEMENTED(); |
| 18 return false; |
| 19 } |
| 20 |
| 21 void ExtensionErrorUIAndroid::ShowExtensions() { |
| 22 NOTIMPLEMENTED(); |
| 23 } |
| 24 |
| 25 // static |
| 26 ExtensionErrorUI* ExtensionErrorUI::Create( |
| 27 ExtensionService* extension_service) { |
| 28 return new ExtensionErrorUIAndroid(extension_service); |
| 29 } |
| 30 |
| OLD | NEW |