| Index: chrome/browser/extensions/unpacked_installer.cc
|
| diff --git a/chrome/browser/extensions/unpacked_installer.cc b/chrome/browser/extensions/unpacked_installer.cc
|
| index eccf2751cef585ccfc9863c51977bc1a16f61448..139b48c030945422633fa299764d153d6596c8f0 100644
|
| --- a/chrome/browser/extensions/unpacked_installer.cc
|
| +++ b/chrome/browser/extensions/unpacked_installer.cc
|
| @@ -12,6 +12,7 @@
|
| #include "chrome/browser/extensions/extension_service.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/extensions/extension_file_util.h"
|
| +#include "chrome/common/string_ordinal.h"
|
|
|
| using content::BrowserThread;
|
|
|
| @@ -56,7 +57,7 @@ void SimpleExtensionLoadPrompt::ShowPrompt() {
|
| void SimpleExtensionLoadPrompt::InstallUIProceed() {
|
| if (service_weak_.get())
|
| service_weak_->OnExtensionInstalled(
|
| - extension_, false, -1); // Not from web store.
|
| + extension_, false, StringOrdinal()); // Not from web store.
|
| delete this;
|
| }
|
|
|
| @@ -212,7 +213,7 @@ void UnpackedInstaller::OnLoaded(
|
| }
|
| service_weak_->OnExtensionInstalled(extension,
|
| false, // Not from web store.
|
| - -1);
|
| + StringOrdinal());
|
| }
|
|
|
| } // namespace extensions
|
|
|