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

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

Issue 10581043: Merge 142921 - Use an infobar instead of alert box for extension install (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/extension_install_ui.h" 5 #include "chrome/browser/extensions/extension_install_ui.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 void ExtensionInstallUIAndroid::OnInstallSuccess(const Extension* extension, 9 void ExtensionInstallUIAndroid::OnInstallSuccess(const Extension* extension,
10 SkBitmap* icon) { 10 SkBitmap* icon) {
11 NOTIMPLEMENTED(); 11 NOTIMPLEMENTED();
12 } 12 }
13 13
14 void ExtensionInstallUIAndroid::OnInstallFailure(const string16& error) { 14 void ExtensionInstallUIAndroid::OnInstallFailure(
15 const CrxInstallerError& error) {
15 NOTIMPLEMENTED(); 16 NOTIMPLEMENTED();
16 } 17 }
17 18
18 void ExtensionInstallUIAndroid::SetSkipPostInstallUI(bool skip_ui) { 19 void ExtensionInstallUIAndroid::SetSkipPostInstallUI(bool skip_ui) {
19 NOTIMPLEMENTED(); 20 NOTIMPLEMENTED();
20 } 21 }
21 22
22 // static 23 // static
23 ExtensionInstallUI* ExtensionInstallUI::Create(Browser* browser) { 24 ExtensionInstallUI* ExtensionInstallUI::Create(Browser* browser) {
24 NOTIMPLEMENTED(); 25 NOTIMPLEMENTED();
25 return NULL; 26 return NULL;
26 } 27 }
27 28
28 // static 29 // static
29 void ExtensionInstallUI::OpenAppInstalledUI( 30 void ExtensionInstallUI::OpenAppInstalledUI(
30 Browser* browser, const std::string& app_id) { 31 Browser* browser, const std::string& app_id) {
31 NOTIMPLEMENTED(); 32 NOTIMPLEMENTED();
32 } 33 }
33 34
34 // static 35 // static
35 void ExtensionInstallUI::DisableFailureUIForTests() { 36 void ExtensionInstallUI::DisableFailureUIForTests() {
36 NOTIMPLEMENTED(); 37 NOTIMPLEMENTED();
37 } 38 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_install_ui_android.h ('k') | chrome/browser/extensions/extension_install_ui_default.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698