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

Unified Diff: tools/gn/toolchain.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/target.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/toolchain.h
diff --git a/tools/gn/toolchain.h b/tools/gn/toolchain.h
index 9f3d19aedb51e62b9d668f5dc9f50c4d0cc46211..c94d8ed5505bf585c666ee93f59cd020ab9796b4 100644
--- a/tools/gn/toolchain.h
+++ b/tools/gn/toolchain.h
@@ -5,7 +5,6 @@
#ifndef TOOLS_GN_TOOLCHAIN_H_
#define TOOLS_GN_TOOLCHAIN_H_
-#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string_piece.h"
@@ -61,11 +60,11 @@ class Toolchain : public Item {
static const char* kToolCopy;
Toolchain(const Settings* settings, const Label& label);
- virtual ~Toolchain();
+ ~Toolchain() override;
// Item overrides.
- virtual Toolchain* AsToolchain() override;
- virtual const Toolchain* AsToolchain() const override;
+ Toolchain* AsToolchain() override;
+ const Toolchain* AsToolchain() const override;
// Returns TYPE_NONE on failure.
static ToolType ToolNameToType(const base::StringPiece& str);
« no previous file with comments | « tools/gn/target.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698