diff options
author | Alex Vakulenko <avakulenko@chromium.org> | 2014-06-16 13:19:00 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2014-06-18 01:39:59 +0000 |
commit | d2779df63aaad8b65fc5d4badee7dbc9bed7f2b6 (patch) | |
tree | e34a511ee4068d8d9cd46a992a4e147f3afbd351 /utils.h | |
parent | b683327ed3f50ef89324069fc87ee076b65bee46 (diff) |
update_engine: fixed warnings from cpplint
Fixed all the cpplint warnings in update engine.
BUG=None
TEST=Unit tests still pass.
Change-Id: I285ae858eec8abe0b26ff203b99a42a200ceb71c
Reviewed-on: https://chromium-review.googlesource.com/204027
Reviewed-by: Alex Vakulenko <avakulenko@chromium.org>
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -5,11 +5,13 @@ #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_UTILS_H_ #define CHROMEOS_PLATFORM_UPDATE_ENGINE_UTILS_H_ -#include <algorithm> #include <errno.h> +#include <unistd.h> + +#include <algorithm> +#include <map> #include <set> #include <string> -#include <unistd.h> #include <vector> #include <base/files/file_path.h> @@ -108,13 +110,6 @@ bool IsSymlink(const char* path); // Returns true if |path| exists and is a directory. bool IsDir(const char* path); -// The last 6 chars of path must be XXXXXX. They will be randomly changed -// and a non-existent path will be returned. Intentionally makes a copy -// of the string passed in. -// NEVER CALL THIS FUNCTION UNLESS YOU ARE SURE -// THAT YOUR PROCESS WILL BE THE ONLY THING WRITING FILES IN THIS DIRECTORY. -std::string TempFilename(std::string path); - // If |base_filename_template| is neither absolute (starts with "/") nor // explicitly relative to the current working directory (starts with "./" or // "../"), then it is prepended the value of TMPDIR, which defaults to /tmp if @@ -184,7 +179,7 @@ bool IsRemovableDevice(const std::string& device); // Synchronously mount or unmount a filesystem. Return true on success. // Mounts as ext3 with default options. bool MountFilesystem(const std::string& device, const std::string& mountpoint, - unsigned long flags); + unsigned long flags); // NOLINT(runtime/int) bool UnmountFilesystem(const std::string& mountpoint); // Returns the block count and the block byte size of the ext3 file system on |