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

Side by Side Diff: content/renderer/pepper/pepper_proxy_channel_delegate_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "ppapi/proxy/proxy_channel.h" 9 #include "ppapi/proxy/proxy_channel.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 class PepperProxyChannelDelegateImpl 13 class PepperProxyChannelDelegateImpl
14 : public ppapi::proxy::ProxyChannel::Delegate { 14 : public ppapi::proxy::ProxyChannel::Delegate {
15 public: 15 public:
16 virtual ~PepperProxyChannelDelegateImpl(); 16 virtual ~PepperProxyChannelDelegateImpl();
17 17
18 // ProxyChannel::Delegate implementation. 18 // ProxyChannel::Delegate implementation.
19 virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE; 19 virtual base::MessageLoopProxy* GetIPCMessageLoop() override;
20 virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE; 20 virtual base::WaitableEvent* GetShutdownEvent() override;
21 virtual IPC::PlatformFileForTransit ShareHandleWithRemote( 21 virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
22 base::PlatformFile handle, 22 base::PlatformFile handle,
23 base::ProcessId remote_pid, 23 base::ProcessId remote_pid,
24 bool should_close_source) OVERRIDE; 24 bool should_close_source) override;
25 }; 25 };
26 26
27 } // namespace content 27 } // namespace content
28 28
29 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_ 29 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PROXY_CHANNEL_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | content/renderer/pepper/pepper_try_catch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698