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

Side by Side Diff: components/nacl/browser/nacl_broker_host_win.cc

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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "components/nacl/browser/nacl_broker_host_win.h" 5 #include "components/nacl/browser/nacl_broker_host_win.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "components/nacl/browser/nacl_broker_service_win.h" 10 #include "components/nacl/browser/nacl_broker_service_win.h"
(...skipping 10 matching lines...) Expand all
21 #include "ipc/ipc_switches.h" 21 #include "ipc/ipc_switches.h"
22 22
23 namespace { 23 namespace {
24 // NOTE: changes to this class need to be reviewed by the security team. 24 // NOTE: changes to this class need to be reviewed by the security team.
25 class NaClBrokerSandboxedProcessLauncherDelegate 25 class NaClBrokerSandboxedProcessLauncherDelegate
26 : public content::SandboxedProcessLauncherDelegate { 26 : public content::SandboxedProcessLauncherDelegate {
27 public: 27 public:
28 NaClBrokerSandboxedProcessLauncherDelegate() {} 28 NaClBrokerSandboxedProcessLauncherDelegate() {}
29 virtual ~NaClBrokerSandboxedProcessLauncherDelegate() {} 29 virtual ~NaClBrokerSandboxedProcessLauncherDelegate() {}
30 30
31 virtual bool ShouldSandbox() OVERRIDE { 31 virtual bool ShouldSandbox() override {
32 return false; 32 return false;
33 } 33 }
34 34
35 private: 35 private:
36 DISALLOW_COPY_AND_ASSIGN(NaClBrokerSandboxedProcessLauncherDelegate); 36 DISALLOW_COPY_AND_ASSIGN(NaClBrokerSandboxedProcessLauncherDelegate);
37 }; 37 };
38 } // namespace 38 } // namespace
39 39
40 namespace nacl { 40 namespace nacl {
41 41
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 NaClBrokerService::GetInstance()->OnDebugExceptionHandlerLaunched(pid, 110 NaClBrokerService::GetInstance()->OnDebugExceptionHandlerLaunched(pid,
111 success); 111 success);
112 } 112 }
113 113
114 void NaClBrokerHost::StopBroker() { 114 void NaClBrokerHost::StopBroker() {
115 is_terminating_ = true; 115 is_terminating_ = true;
116 process_->Send(new NaClProcessMsg_StopBroker()); 116 process_->Send(new NaClProcessMsg_StopBroker());
117 } 117 }
118 118
119 } // namespace nacl 119 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/broker/nacl_broker_listener.h ('k') | components/nacl/browser/nacl_file_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698