summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/fake_image_burner_client.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2015-01-15 23:37:50 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-16 07:38:47 +0000
commit0280cb6ec0c9158a01e2f484a6caa83d690b4e66 (patch)
tree4750c3718240f0db11228d8f93aadb734acb01a3 /chromeos/dbus/fake_image_burner_client.h
parent1a492a342aecb37fabf514030d4df0a28e76ec87 (diff)
downloadchromium_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/fake_image_burner_client.h')
-rw-r--r--chromeos/dbus/fake_image_burner_client.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromeos/dbus/fake_image_burner_client.h b/chromeos/dbus/fake_image_burner_client.h
index eaa68df..0941706 100644
--- a/chromeos/dbus/fake_image_burner_client.h
+++ b/chromeos/dbus/fake_image_burner_client.h
@@ -15,17 +15,17 @@ namespace chromeos {
class CHROMEOS_EXPORT FakeImageBurnerClient : public ImageBurnerClient {
public:
FakeImageBurnerClient();
- virtual ~FakeImageBurnerClient();
+ ~FakeImageBurnerClient() override;
// ImageBurnerClient overrides
- virtual void Init(dbus::Bus* bus) override;
- virtual void BurnImage(const std::string& from_path,
- const std::string& to_path,
- const ErrorCallback& error_callback) override;
- virtual void SetEventHandlers(
+ void Init(dbus::Bus* bus) override;
+ void BurnImage(const std::string& from_path,
+ const std::string& to_path,
+ const ErrorCallback& error_callback) override;
+ void SetEventHandlers(
const BurnFinishedHandler& burn_finished_handler,
const BurnProgressUpdateHandler& burn_progress_update_handler) override;
- virtual void ResetEventHandlers() override;
+ void ResetEventHandlers() override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeImageBurnerClient);