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

Unified Diff: extensions/common/api/bluetooth/bluetooth_manifest_handler.h

Issue 664933004: Standardize usage of virtual/override/final in extensions/ (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 side-by-side diff with in-line comments
Download patch
Index: extensions/common/api/bluetooth/bluetooth_manifest_handler.h
diff --git a/extensions/common/api/bluetooth/bluetooth_manifest_handler.h b/extensions/common/api/bluetooth/bluetooth_manifest_handler.h
index 3b6eaa49eaa81858cbe89a8a8f517b79bd71d1e4..b87fd513a113956a3a3ab5f8900c8e9e1d2d1b4a 100644
--- a/extensions/common/api/bluetooth/bluetooth_manifest_handler.h
+++ b/extensions/common/api/bluetooth/bluetooth_manifest_handler.h
@@ -21,17 +21,17 @@ namespace extensions {
class BluetoothManifestHandler : public ManifestHandler {
public:
BluetoothManifestHandler();
- virtual ~BluetoothManifestHandler();
+ ~BluetoothManifestHandler() override;
// ManifestHandler overrides.
- virtual bool Parse(Extension* extension, base::string16* error) override;
- virtual ManifestPermission* CreatePermission() override;
- virtual ManifestPermission* CreateInitialRequiredPermission(
+ bool Parse(Extension* extension, base::string16* error) override;
+ ManifestPermission* CreatePermission() override;
+ ManifestPermission* CreateInitialRequiredPermission(
const Extension* extension) override;
private:
// ManifestHandler overrides.
- virtual const std::vector<std::string> Keys() const override;
+ const std::vector<std::string> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(BluetoothManifestHandler);
};

Powered by Google App Engine
This is Rietveld 408576698