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

Unified Diff: components/nacl/zygote/nacl_fork_delegate_linux.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: components/nacl/zygote/nacl_fork_delegate_linux.h
diff --git a/components/nacl/zygote/nacl_fork_delegate_linux.h b/components/nacl/zygote/nacl_fork_delegate_linux.h
index 6a72a0151577730ab66f40d532285da63e9bb1e2..5d7b6b854a0f74f59eb4c46f5b540b2834794101 100644
--- a/components/nacl/zygote/nacl_fork_delegate_linux.h
+++ b/components/nacl/zygote/nacl_fork_delegate_linux.h
@@ -36,18 +36,18 @@ class NaClForkDelegate : public content::ZygoteForkDelegate {
explicit NaClForkDelegate(bool nonsfi_mode);
virtual ~NaClForkDelegate();
- virtual void Init(int sandboxdesc, bool enable_layer1_sandbox) OVERRIDE;
+ virtual void Init(int sandboxdesc, bool enable_layer1_sandbox) override;
virtual void InitialUMA(std::string* uma_name,
int* uma_sample,
- int* uma_boundary_value) OVERRIDE;
+ int* uma_boundary_value) override;
virtual bool CanHelp(const std::string& process_type, std::string* uma_name,
- int* uma_sample, int* uma_boundary_value) OVERRIDE;
+ int* uma_sample, int* uma_boundary_value) override;
virtual pid_t Fork(const std::string& process_type,
const std::vector<int>& fds,
- const std::string& channel_id) OVERRIDE;
+ const std::string& channel_id) override;
virtual bool GetTerminationStatus(pid_t pid, bool known_dead,
base::TerminationStatus* status,
- int* exit_code) OVERRIDE;
+ int* exit_code) override;
private:
static void AddPassthroughEnvToOptions(base::LaunchOptions* options);

Powered by Google App Engine
This is Rietveld 408576698