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.
5 #include "chrome/browser/extensions/extension_error_ui_android.h"
7 #include "base/logging.h"
11 ExtensionErrorUIAndroid::ExtensionErrorUIAndroid(
12 ExtensionErrorUI::Delegate
* delegate
) : ExtensionErrorUI(delegate
) {}
14 ExtensionErrorUIAndroid::~ExtensionErrorUIAndroid() {}
16 // ExtensionErrorUI implementation:
17 bool ExtensionErrorUIAndroid::ShowErrorInBubbleView() {
22 void ExtensionErrorUIAndroid::ShowExtensions() {
26 void ExtensionErrorUIAndroid::Close() {
31 ExtensionErrorUI
* ExtensionErrorUI::Create(
32 ExtensionErrorUI::Delegate
* delegate
) {
33 return new ExtensionErrorUIAndroid(delegate
);
36 } // namespace extensions