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

Unified Diff: courgette/ensemble_create.cc

Issue 988002: Fix for bug where 64-bit executables were processed as 32-bit executables.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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
« no previous file with comments | « courgette/ensemble.cc ('k') | courgette/win32_x86_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/ensemble_create.cc
===================================================================
--- courgette/ensemble_create.cc (revision 41586)
+++ courgette/ensemble_create.cc (working copy)
@@ -186,6 +186,9 @@
Status GenerateEnsemblePatch(SourceStream* base,
SourceStream* update,
SinkStream* final_patch) {
+ LOG(INFO) << "start GenerateEnsemblePatch";
+ base::Time start_time = base::Time::Now();
+
Region old_region(base->Buffer(), base->Remaining());
Region new_region(update->Buffer(), update->Remaining());
Ensemble old_ensemble(old_region, "old");
@@ -376,6 +379,9 @@
if (!patch_streams.CopyTo(final_patch))
return C_STREAM_ERROR;
+ LOG(INFO) << "done GenerateEnsemblePatch "
+ << (base::Time::Now() - start_time).InSecondsF() << "s";
+
return C_OK;
}
« no previous file with comments | « courgette/ensemble.cc ('k') | courgette/win32_x86_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698