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

Unified Diff: tools/gn/builder_unittest.cc

Issue 631653002: Replacing the OVERRIDE with override in tools folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected patch-set-1 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/binary_target_generator.h ('k') | tools/gn/config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/builder_unittest.cc
diff --git a/tools/gn/builder_unittest.cc b/tools/gn/builder_unittest.cc
index b9b7e5fb50b75b267ef208426a6c0a88d19eda32..059037d7be946ee883c78a3c5604822351848516 100644
--- a/tools/gn/builder_unittest.cc
+++ b/tools/gn/builder_unittest.cc
@@ -19,16 +19,16 @@ class MockLoader : public Loader {
// Loader implementation:
virtual void Load(const SourceFile& file,
const LocationRange& origin,
- const Label& toolchain_name) OVERRIDE {
+ const Label& toolchain_name) override {
files_.push_back(file);
}
- virtual void ToolchainLoaded(const Toolchain* toolchain) OVERRIDE {
+ virtual void ToolchainLoaded(const Toolchain* toolchain) override {
}
- virtual Label GetDefaultToolchain() const OVERRIDE {
+ virtual Label GetDefaultToolchain() const override {
return Label();
}
virtual const Settings* GetToolchainSettings(
- const Label& label) const OVERRIDE {
+ const Label& label) const override {
return NULL;
}
« no previous file with comments | « tools/gn/binary_target_generator.h ('k') | tools/gn/config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698