summaryrefslogtreecommitdiffstats
path: root/content/browser/plugin_data_remover_impl.cc
diff options
context:
space:
mode:
authormohan.reddy <mohan.reddy@samsung.com>2014-10-08 22:24:13 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-09 05:24:24 +0000
commit7fc3ac7d5ac957a99031b20a8c54a197166b292a (patch)
treeb091b4c401c8f4c0a49f38bb54658be00d81503f /content/browser/plugin_data_remover_impl.cc
parent4569c42c7444d4468f2c125a42ebadc433b7d51c (diff)
downloadchromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.zip
chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.gz
chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.bz2
Replace FINAL and OVERRIDE with their C++11 counterparts in content
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/637183002 Cr-Commit-Position: refs/heads/master@{#298804}
Diffstat (limited to 'content/browser/plugin_data_remover_impl.cc')
-rw-r--r--content/browser/plugin_data_remover_impl.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc
index a318e72..1f6f615 100644
--- a/content/browser/plugin_data_remover_impl.cc
+++ b/content/browser/plugin_data_remover_impl.cc
@@ -122,32 +122,32 @@ class PluginDataRemoverImpl::Context
}
// PluginProcessHost::Client methods.
- virtual int ID() OVERRIDE {
+ virtual int ID() override {
// Generate a unique identifier for this PluginProcessHostClient.
return ChildProcessHostImpl::GenerateChildProcessUniqueId();
}
- virtual bool OffTheRecord() OVERRIDE {
+ virtual bool OffTheRecord() override {
return false;
}
- virtual ResourceContext* GetResourceContext() OVERRIDE {
+ virtual ResourceContext* GetResourceContext() override {
return resource_context_;
}
- virtual void SetPluginInfo(const WebPluginInfo& info) OVERRIDE {}
+ virtual void SetPluginInfo(const WebPluginInfo& info) override {}
- virtual void OnFoundPluginProcessHost(PluginProcessHost* host) OVERRIDE {}
+ virtual void OnFoundPluginProcessHost(PluginProcessHost* host) override {}
- virtual void OnSentPluginChannelRequest() OVERRIDE {}
+ virtual void OnSentPluginChannelRequest() override {}
- virtual void OnChannelOpened(const IPC::ChannelHandle& handle) OVERRIDE {
+ virtual void OnChannelOpened(const IPC::ChannelHandle& handle) override {
ConnectToChannel(handle, false);
// Balancing the AddRef call.
Release();
}
- virtual void OnError() OVERRIDE {
+ virtual void OnError() override {
LOG(ERROR) << "Couldn't open plugin channel";
SignalDone();
// Balancing the AddRef call.
@@ -156,7 +156,7 @@ class PluginDataRemoverImpl::Context
// PpapiPluginProcessHost::BrokerClient implementation.
virtual void GetPpapiChannelInfo(base::ProcessHandle* renderer_handle,
- int* renderer_id) OVERRIDE {
+ int* renderer_id) override {
*renderer_handle = base::kNullProcessHandle;
*renderer_id = 0;
}
@@ -164,7 +164,7 @@ class PluginDataRemoverImpl::Context
virtual void OnPpapiChannelOpened(
const IPC::ChannelHandle& channel_handle,
base::ProcessId /* peer_pid */,
- int /* child_id */) OVERRIDE {
+ int /* child_id */) override {
if (!channel_handle.name.empty())
ConnectToChannel(channel_handle, true);
@@ -173,7 +173,7 @@ class PluginDataRemoverImpl::Context
}
// IPC::Listener methods.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
+ virtual bool OnMessageReceived(const IPC::Message& message) override {
IPC_BEGIN_MESSAGE_MAP(Context, message)
IPC_MESSAGE_HANDLER(PluginProcessHostMsg_ClearSiteDataResult,
OnClearSiteDataResult)
@@ -185,7 +185,7 @@ class PluginDataRemoverImpl::Context
return true;
}
- virtual void OnChannelError() OVERRIDE {
+ virtual void OnChannelError() override {
if (is_removing_) {
NOTREACHED() << "Channel error";
SignalDone();