Commit 809e0233 authored by Daniel Cheng's avatar Daniel Cheng

Update {virtual,override,final} to follow C++11 style in device.

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 an OS=android build using a
variation of https://codereview.chromium.org/598073004.

BUG=417463
R=timvolodine@chromium.org

Review URL: https://codereview.chromium.org/902973002

Cr-Commit-Position: refs/heads/master@{#315079}
parent 853f5432
......@@ -23,7 +23,7 @@ class VibrationManagerImplAndroid
private:
VibrationManagerImplAndroid();
virtual ~VibrationManagerImplAndroid();
~VibrationManagerImplAndroid() override;
base::android::ScopedJavaGlobalRef<jobject> j_vibration_provider_;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment