commit | e8d07b750c8cd634b2534bbbef813c4d9f186c5d | [log] [tgz] |
---|---|---|
author | Samuel Huang <[email protected]> | Mon Aug 21 16:05:25 2017 |
committer | Commit Bot <[email protected]> | Mon Aug 21 16:05:25 2017 |
tree | 8654dae97afc4a1c22fb684d65d45e0e7fdd52a6 | |
parent | 56ed44aec59aa0e77d5712fea7d4ce83c4b6237a [diff] [blame] |
[Zucchini] Minor stylistic fixes. Details: - Fix includes, especially <stddef.h> (for size_t) and <stdint.h>. - Replace constructor initializer use of foo(foo) with foo_in(foo). - Miscellaneous. Bug: 729154 Change-Id: Ibb714e275414f610c993569532e286677ee5a7cd Reviewed-on: https://chromium-review.googlesource.com/622967 Commit-Queue: Samuel Huang <[email protected]> Reviewed-by: Greg Thompson <[email protected]> Cr-Commit-Position: refs/heads/master@{#495948}
diff --git a/chrome/installer/zucchini/zucchini_commands.cc b/chrome/installer/zucchini/zucchini_commands.cc index 1447f41b..ed525ef8d 100644 --- a/chrome/installer/zucchini/zucchini_commands.cc +++ b/chrome/installer/zucchini/zucchini_commands.cc
@@ -4,6 +4,9 @@ #include "chrome/installer/zucchini/zucchini_commands.h" +#include <stddef.h> +#include <stdint.h> + #include <iostream> #include <ostream>