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

Side by Side Diff: chrome/browser/component_updater/component_patcher_operation_out_of_process.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC ESS_H_ 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC ESS_H_
6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC ESS_H_ 6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC ESS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 14 matching lines...) Expand all
25 class ChromeOutOfProcessPatcher : public OutOfProcessPatcher { 25 class ChromeOutOfProcessPatcher : public OutOfProcessPatcher {
26 public: 26 public:
27 ChromeOutOfProcessPatcher(); 27 ChromeOutOfProcessPatcher();
28 28
29 // DeltaUpdateOpPatch::OutOfProcessPatcher implementation. 29 // DeltaUpdateOpPatch::OutOfProcessPatcher implementation.
30 virtual void Patch(const std::string& operation, 30 virtual void Patch(const std::string& operation,
31 scoped_refptr<base::SequencedTaskRunner> task_runner, 31 scoped_refptr<base::SequencedTaskRunner> task_runner,
32 const base::FilePath& input_abs_path, 32 const base::FilePath& input_abs_path,
33 const base::FilePath& patch_abs_path, 33 const base::FilePath& patch_abs_path,
34 const base::FilePath& output_abs_path, 34 const base::FilePath& output_abs_path,
35 base::Callback<void(int result)> callback) OVERRIDE; 35 base::Callback<void(int result)> callback) override;
36 36
37 private: 37 private:
38 virtual ~ChromeOutOfProcessPatcher(); 38 virtual ~ChromeOutOfProcessPatcher();
39 39
40 scoped_refptr<PatchHost> host_; 40 scoped_refptr<PatchHost> host_;
41 41
42 DISALLOW_COPY_AND_ASSIGN(ChromeOutOfProcessPatcher); 42 DISALLOW_COPY_AND_ASSIGN(ChromeOutOfProcessPatcher);
43 }; 43 };
44 44
45 } // namespace component_updater 45 } // namespace component_updater
46 46
47 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_P ROCESS_H_ 47 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_P ROCESS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698