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

Unified Diff: src/platform/update_engine/subprocess.h

Issue 1718001: AU: Class to perform delta updates. (Closed)
Patch Set: fixes for review Created 10 years, 8 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: src/platform/update_engine/subprocess.h
diff --git a/src/platform/update_engine/subprocess.h b/src/platform/update_engine/subprocess.h
index 92064a65aa5bb98f1e5634f1f7affe6a16de41eb..3aa46466b0a05b53bf1a2b7030e21d84bdf197e7 100644
--- a/src/platform/update_engine/subprocess.h
+++ b/src/platform/update_engine/subprocess.h
@@ -29,12 +29,12 @@ class Subprocess {
typedef void(*ExecCallback)(int return_code, void *p);
// Returns a tag > 0 on success.
- uint32 Exec(const std::vector<std::string>& cmd,
- ExecCallback callback,
- void* p);
+ uint32_t Exec(const std::vector<std::string>& cmd,
+ ExecCallback callback,
+ void* p);
// Used to cancel the callback. The process will still run to completion.
- void CancelExec(uint32 tag);
+ void CancelExec(uint32_t tag);
// Executes a command synchronously. Returns true on success.
static bool SynchronousExec(const std::vector<std::string>& cmd,

Powered by Google App Engine
This is Rietveld 408576698