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

Unified Diff: courgette/ensemble_apply.cc

Issue 8417045: Last small bit of refactoring. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 2 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.h ('k') | courgette/ensemble_create.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/ensemble_apply.cc
diff --git a/courgette/ensemble_apply.cc b/courgette/ensemble_apply.cc
index 475b0a4151b086060747c445f42322661c8c08dd..d814264c93b1f6fb9b22d33d136ae919268a5154 100644
--- a/courgette/ensemble_apply.cc
+++ b/courgette/ensemble_apply.cc
@@ -14,7 +14,7 @@
#include "courgette/region.h"
#include "courgette/streams.h"
#include "courgette/simple_delta.h"
-#include "courgette/win32_x86_patcher.h"
+#include "courgette/patcher_x86_32.h"
namespace courgette {
@@ -139,8 +139,8 @@ Status EnsemblePatchApplication::ReadInitialParameters(
switch (kind)
{
- case CourgettePatchFile::T_COURGETTE_WIN32_X86:
- patcher = new CourgetteWin32X86Patcher(base_region_);
+ case EXE_WIN_32_X86:
+ patcher = new PatcherX86_32(base_region_);
break;
}
« no previous file with comments | « courgette/ensemble.h ('k') | courgette/ensemble_create.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698