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

Unified Diff: components/component_updater/component_patcher_operation.h

Issue 590333002: Replace usage of basictypes.h with a combination of stdint.h and base/macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 3 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: components/component_updater/component_patcher_operation.h
diff --git a/components/component_updater/component_patcher_operation.h b/components/component_updater/component_patcher_operation.h
index 023e4be1d3d223bdcd1d1886189bfcc2f65ceff7..4867ed7c7e170afd5b853f9bc79ce760f8246d36 100644
--- a/components/component_updater/component_patcher_operation.h
+++ b/components/component_updater/component_patcher_operation.h
@@ -7,10 +7,10 @@
#include <string>
-#include "base/basictypes.h"
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "components/component_updater/component_unpacker.h"
@@ -131,9 +131,9 @@ class OutOfProcessPatcher
public:
virtual void Patch(const std::string& operation,
scoped_refptr<base::SequencedTaskRunner> task_runner,
- base::FilePath& input_abs_path,
- base::FilePath& patch_abs_path,
- base::FilePath& output_abs_path,
+ const base::FilePath& input_abs_path,
+ const base::FilePath& patch_abs_path,
+ const base::FilePath& output_abs_path,
base::Callback<void(int result)> callback) = 0;
protected:
« no previous file with comments | « components/component_updater/component_patcher.cc ('k') | components/component_updater/component_patcher_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698