Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: chrome/browser/extensions/extension_error_ui_android.cc

Issue 10696210: Making ExtensionService less dependent on Browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang build. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 // static
26 ExtensionErrorUI* ExtensionErrorUI::Create(
27 ExtensionService* extension_service) {
28 return new ExtensionErrorUIAndroid(extension_service);
29 }
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698