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

Unified Diff: syzygy/runlaa/runlaa_main.cc

Issue 1269553002: Create a utility for running executables in LAA mode. (Closed) Base URL: https://github.com/google/syzygy.git@master
Patch Set: Created 5 years, 5 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
Index: syzygy/runlaa/runlaa_main.cc
diff --git a/syzygy/poirot/poirot_main.cc b/syzygy/runlaa/runlaa_main.cc
similarity index 88%
copy from syzygy/poirot/poirot_main.cc
copy to syzygy/runlaa/runlaa_main.cc
index 950a6fcd9c94e7ea1d9106e9783859bf80280f67..3111eec452b755c9379e589c88450a7dabf93c43 100644
--- a/syzygy/poirot/poirot_main.cc
+++ b/syzygy/runlaa/runlaa_main.cc
@@ -14,10 +14,10 @@
#include "base/at_exit.h"
#include "base/command_line.h"
-#include "syzygy/poirot/poirot_app.h"
+#include "syzygy/runlaa/runlaa_app.h"
int main(int argc, const char* const* argv) {
base::AtExitManager at_exit_manager;
base::CommandLine::Init(argc, argv);
- return application::Application<poirot::PoirotApp>().Run();
+ return application::Application<runlaa::RunLaaApp>().Run();
}

Powered by Google App Engine
This is Rietveld 408576698