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

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

Issue 407483002: Show post-install UI when ephemeral apps are promoted to installed apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@install_guard
Patch Set: Check ephemeral app flag in startup_helper Created 6 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
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/ui/android/extensions/extension_install_ui_android.h" 5 #include "chrome/browser/ui/android/extensions/extension_install_ui_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 void ExtensionInstallUIAndroid::OnInstallSuccess( 9 void ExtensionInstallUIAndroid::OnInstallSuccess(
10 const extensions::Extension* extension, 10 const extensions::Extension* extension,
11 SkBitmap* icon) { 11 const SkBitmap* icon) {
12 NOTIMPLEMENTED(); 12 NOTIMPLEMENTED();
13 } 13 }
14 14
15 void ExtensionInstallUIAndroid::OnInstallFailure( 15 void ExtensionInstallUIAndroid::OnInstallFailure(
16 const extensions::CrxInstallerError& error) { 16 const extensions::CrxInstallerError& error) {
17 NOTIMPLEMENTED(); 17 NOTIMPLEMENTED();
18 } 18 }
19 19
20 // static 20 // static
21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) { 21 ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
(...skipping 13 matching lines...) Expand all
35 NOTIMPLEMENTED(); 35 NOTIMPLEMENTED();
36 return NULL; 36 return NULL;
37 } 37 }
38 38
39 // static 39 // static
40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile( 40 ExtensionInstallPrompt* ExtensionInstallUI::CreateInstallPromptWithProfile(
41 Profile* profile) { 41 Profile* profile) {
42 NOTIMPLEMENTED(); 42 NOTIMPLEMENTED();
43 return NULL; 43 return NULL;
44 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698