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 #include "base/logging.h" 8 9 namespace extensions { 10 ExtensionErrorUIAndroid(ExtensionErrorUI::Delegate * delegate)11ExtensionErrorUIAndroid::ExtensionErrorUIAndroid( 12 ExtensionErrorUI::Delegate* delegate) : ExtensionErrorUI(delegate) {} 13 ~ExtensionErrorUIAndroid()14ExtensionErrorUIAndroid::~ExtensionErrorUIAndroid() {} 15 16 // ExtensionErrorUI implementation: ShowErrorInBubbleView()17bool ExtensionErrorUIAndroid::ShowErrorInBubbleView() { 18 NOTIMPLEMENTED(); 19 return false; 20 } 21 ShowExtensions()22void ExtensionErrorUIAndroid::ShowExtensions() { 23 NOTIMPLEMENTED(); 24 } 25 Close()26void ExtensionErrorUIAndroid::Close() { 27 NOTIMPLEMENTED(); 28 } 29 30 // static Create(ExtensionErrorUI::Delegate * delegate)31ExtensionErrorUI* ExtensionErrorUI::Create( 32 ExtensionErrorUI::Delegate* delegate) { 33 return new ExtensionErrorUIAndroid(delegate); 34 } 35 36 } // namespace extensions 37