Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / chrome / browser / extensions / extension_error_ui_android.cc
blob466f8a7c1c294d2a8925e0334e4bd40245132204
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"
9 namespace extensions {
11 ExtensionErrorUIAndroid::ExtensionErrorUIAndroid(
12 ExtensionErrorUI::Delegate* delegate) : ExtensionErrorUI(delegate) {}
14 ExtensionErrorUIAndroid::~ExtensionErrorUIAndroid() {}
16 // ExtensionErrorUI implementation:
17 bool ExtensionErrorUIAndroid::ShowErrorInBubbleView() {
18 NOTIMPLEMENTED();
19 return false;
22 void ExtensionErrorUIAndroid::ShowExtensions() {
23 NOTIMPLEMENTED();
26 void ExtensionErrorUIAndroid::Close() {
27 NOTIMPLEMENTED();
30 // static
31 ExtensionErrorUI* ExtensionErrorUI::Create(
32 ExtensionErrorUI::Delegate* delegate) {
33 return new ExtensionErrorUIAndroid(delegate);
36 } // namespace extensions