Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / extensions / extension_error_ui_android.cc
blob35868f0ba1298be081cbe2421c0275f0b4f6fb9f
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 ExtensionErrorUIAndroid::ExtensionErrorUIAndroid(
8 ExtensionService* extension_service)
9 : ExtensionErrorUI(extension_service) {
12 ExtensionErrorUIAndroid::~ExtensionErrorUIAndroid() {
15 // ExtensionErrorUI implementation:
16 bool ExtensionErrorUIAndroid::ShowErrorInBubbleView() {
17 NOTIMPLEMENTED();
18 return false;
21 void ExtensionErrorUIAndroid::ShowExtensions() {
22 NOTIMPLEMENTED();
25 void ExtensionErrorUIAndroid::Close() {
26 NOTIMPLEMENTED();
29 // static
30 ExtensionErrorUI* ExtensionErrorUI::Create(
31 ExtensionService* extension_service) {
32 return new ExtensionErrorUIAndroid(extension_service);