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

Unified Diff: chrome/browser/component_updater/component_patcher_operation_out_of_process.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: chrome/browser/component_updater/component_patcher_operation_out_of_process.h
diff --git a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
index 7c61404333f66c08e69534015ab45af90e0a5408..0f6d6b5f5363382cbbbaa7f0a2d959adead51349 100644
--- a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
+++ b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
@@ -7,10 +7,16 @@
#include <string>
-#include "base/basictypes.h"
#include "base/callback_forward.h"
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
#include "components/component_updater/component_patcher_operation.h"
+namespace base {
+class FilePath;
+class SequencedTaskRunner;
+} // namespace base
+
namespace component_updater {
class PatchHost;
@@ -23,9 +29,9 @@ class ChromeOutOfProcessPatcher : public OutOfProcessPatcher {
// DeltaUpdateOpPatch::OutOfProcessPatcher implementation.
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) OVERRIDE;
private:

Powered by Google App Engine
This is Rietveld 408576698