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

Unified Diff: tools/gn/config.h

Issue 643063004: Convert OVERRIDE -> override and update virtual/final usage in tools/gn/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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
« no previous file with comments | « tools/gn/builder_unittest.cc ('k') | tools/gn/copy_target_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/config.h
diff --git a/tools/gn/config.h b/tools/gn/config.h
index d896ec6dcb9bed7e0df0f70926ac800d4e5337a4..543d660418776b4d35e281c7e53f9b8c56837b25 100644
--- a/tools/gn/config.h
+++ b/tools/gn/config.h
@@ -5,7 +5,7 @@
#ifndef TOOLS_GN_CONFIG_H_
#define TOOLS_GN_CONFIG_H_
-#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "tools/gn/config_values.h"
#include "tools/gn/item.h"
@@ -13,10 +13,10 @@
class Config : public Item {
public:
Config(const Settings* settings, const Label& label);
- virtual ~Config();
+ ~Config() override;
- virtual Config* AsConfig() override;
- virtual const Config* AsConfig() const override;
+ Config* AsConfig() override;
+ const Config* AsConfig() const override;
ConfigValues& config_values() { return config_values_; }
const ConfigValues& config_values() const { return config_values_; }
« no previous file with comments | « tools/gn/builder_unittest.cc ('k') | tools/gn/copy_target_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698