- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / extension_error_ui_android.cc
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 void ExtensionErrorUIAndroid::Close() {
26   NOTIMPLEMENTED();
27 }
28
29 // static
30 ExtensionErrorUI* ExtensionErrorUI::Create(
31     ExtensionService* extension_service) {
32   return new ExtensionErrorUIAndroid(extension_service);
33 }