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

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

Issue 8898027: Revert 114083 - Convert app_launch_index and page_index from int to StringOrdinal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
« no previous file with comments | « chrome/browser/extensions/test_extension_prefs.cc ('k') | chrome/browser/resources/ntp4/page_list_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/unpacked_installer.cc
===================================================================
--- chrome/browser/extensions/unpacked_installer.cc (revision 114254)
+++ chrome/browser/extensions/unpacked_installer.cc (working copy)
@@ -12,7 +12,6 @@
#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;
@@ -57,7 +56,7 @@
void SimpleExtensionLoadPrompt::InstallUIProceed() {
if (service_weak_.get())
service_weak_->OnExtensionInstalled(
- extension_, false, StringOrdinal()); // Not from web store.
+ extension_, false, -1); // Not from web store.
delete this;
}
@@ -210,7 +209,7 @@
}
service_weak_->OnExtensionInstalled(extension,
false, // Not from web store.
- StringOrdinal());
+ -1);
}
} // namespace extensions
Property changes on: chrome/browser/extensions/unpacked_installer.cc
___________________________________________________________________
Deleted: svn:mergeinfo
« no previous file with comments | « chrome/browser/extensions/test_extension_prefs.cc ('k') | chrome/browser/resources/ntp4/page_list_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698