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

Unified Diff: chrome/browser/extensions/crx_installer_browsertest.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 2 Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/crx_installer_browsertest.cc
diff --git a/chrome/browser/extensions/crx_installer_browsertest.cc b/chrome/browser/extensions/crx_installer_browsertest.cc
index a98560e43ca70553a344bec30928907d10229ced..0f0c7142792776f767aade169fc12c72beae1597 100644
--- a/chrome/browser/extensions/crx_installer_browsertest.cc
+++ b/chrome/browser/extensions/crx_installer_browsertest.cc
@@ -31,11 +31,13 @@ class MockInstallUI : public ExtensionInstallUI {
bool confirmation_requested() { return confirmation_requested_; }
// Overriding some of the ExtensionInstallUI API.
- void ConfirmInstall(Delegate* delegate, const Extension* extension) {
+ void ConfirmInstall(Delegate* delegate,
+ const extensions::Extension* extension) {
confirmation_requested_ = true;
delegate->InstallUIProceed();
}
- void OnInstallSuccess(const Extension* extension, SkBitmap* icon) {
+ void OnInstallSuccess(const extensions::Extension* extension,
+ SkBitmap* icon) {
MessageLoopForUI::current()->Quit();
}
void OnInstallFailure(const string16& error) {

Powered by Google App Engine
This is Rietveld 408576698