| Index: chrome/browser/extensions/unpacked_installer.cc
|
| diff --git a/chrome/browser/extensions/unpacked_installer.cc b/chrome/browser/extensions/unpacked_installer.cc
|
| index b8c240d482b3161d5207bea0079e052254d5843b..d6c4ee5e5ff62257c171bc3aec32138b24129e79 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;
|
| }
|
|
|
| @@ -211,7 +212,7 @@ void UnpackedInstaller::OnLoaded(
|
| }
|
| service_weak_->OnExtensionInstalled(extension,
|
| false, // Not from web store.
|
| - -1);
|
| + StringOrdinal());
|
| }
|
|
|
| } // namespace extensions
|
|
|