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

Side by Side Diff: chrome/browser/ui/android/extensions/extension_install_ui_android.cc

Issue 453033004: Cleanup: Remove unneeded android extensions code in chrome/browser/ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/ui/android/extensions/extension_install_ui_android.h"
6
7 #include "base/logging.h"
8
9 void ExtensionInstallUIAndroid::OnInstallSuccess(
10 const extensions::Extension* extension,
11 const SkBitmap* icon) {
12 NOTIMPLEMENTED();
13 }
14
15 void ExtensionInstallUIAndroid::OnInstallFailure(
16 const extensions::CrxInstallerError& error) {
17 NOTIMPLEMENTED();
18 }
19
20 // static
21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
22 NOTIMPLEMENTED();
23 return NULL;
24 }
25
26 // static
27 void ExtensionInstallUI::OpenAppInstalledUI(Profile* profile,
28 const std::string& app_id) {
29 NOTIMPLEMENTED();
30 }
31
32 // static
33 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithBrowser(
34 Browser* browser) {
35 NOTIMPLEMENTED();
36 return NULL;
37 }
38
39 // static
40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile(
41 Profile* profile) {
42 NOTIMPLEMENTED();
43 return NULL;
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698