diff options
author | dcheng <dcheng@chromium.org> | 2015-01-15 23:37:50 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-16 07:38:47 +0000 |
commit | 0280cb6ec0c9158a01e2f484a6caa83d690b4e66 (patch) | |
tree | 4750c3718240f0db11228d8f93aadb734acb01a3 /chromeos/dbus/bluetooth_agent_service_provider.cc | |
parent | 1a492a342aecb37fabf514030d4df0a28e76ec87 (diff) | |
download | chromium_src-0280cb6ec0c9158a01e2f484a6caa83d690b4e66.zip chromium_src-0280cb6ec0c9158a01e2f484a6caa83d690b4e66.tar.gz chromium_src-0280cb6ec0c9158a01e2f484a6caa83d690b4e66.tar.bz2 |
Update {virtual,override,final} to follow C++11 style in chromeos/dbus.
The Google style guide states that only one of {virtual,override,final}
should be used for each declaration, since override implies virtual and
final implies both virtual and override.
This patch was automatically generated with a ChromeOS build using a
variation of https://codereview.chromium.org/598073004.
BUG=417463
R=hashimoto@chromium.org
Review URL: https://codereview.chromium.org/817853005
Cr-Commit-Position: refs/heads/master@{#311851}
Diffstat (limited to 'chromeos/dbus/bluetooth_agent_service_provider.cc')
-rw-r--r-- | chromeos/dbus/bluetooth_agent_service_provider.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/dbus/bluetooth_agent_service_provider.cc b/chromeos/dbus/bluetooth_agent_service_provider.cc index 1e21737..6c02c92 100644 --- a/chromeos/dbus/bluetooth_agent_service_provider.cc +++ b/chromeos/dbus/bluetooth_agent_service_provider.cc @@ -109,7 +109,7 @@ class BluetoothAgentServiceProviderImpl weak_ptr_factory_.GetWeakPtr())); } - virtual ~BluetoothAgentServiceProviderImpl() { + ~BluetoothAgentServiceProviderImpl() override { VLOG(1) << "Cleaning up Bluetooth Agent: " << object_path_.value(); // Unregister the object path so we can reuse with a new agent. |