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

Unified Diff: content/browser/devtools/devtools_system_info_handler.cc

Issue 634483005: Replacing the OVERRIDE with override and FINAL with final in content/browser/[devtools/ssl] (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
« no previous file with comments | « content/browser/devtools/devtools_protocol.h ('k') | content/browser/devtools/devtools_tracing_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/devtools_system_info_handler.cc
diff --git a/content/browser/devtools/devtools_system_info_handler.cc b/content/browser/devtools/devtools_system_info_handler.cc
index 608fa778993b718568530425d8a6fd6bce60fb58..b9c5b4ff2ac75c90f26718b5a20fb6827f7a34b2 100644
--- a/content/browser/devtools/devtools_system_info_handler.cc
+++ b/content/browser/devtools/devtools_system_info_handler.cc
@@ -34,47 +34,47 @@ class AuxGPUInfoEnumerator : public gpu::GPUInfo::Enumerator {
: dictionary_(dictionary),
in_aux_attributes_(false) { }
- virtual void AddInt64(const char* name, int64 value) OVERRIDE {
+ virtual void AddInt64(const char* name, int64 value) override {
if (in_aux_attributes_)
dictionary_->SetDouble(name, value);
}
- virtual void AddInt(const char* name, int value) OVERRIDE {
+ virtual void AddInt(const char* name, int value) override {
if (in_aux_attributes_)
dictionary_->SetInteger(name, value);
}
- virtual void AddString(const char* name, const std::string& value) OVERRIDE {
+ virtual void AddString(const char* name, const std::string& value) override {
if (in_aux_attributes_)
dictionary_->SetString(name, value);
}
- virtual void AddBool(const char* name, bool value) OVERRIDE {
+ virtual void AddBool(const char* name, bool value) override {
if (in_aux_attributes_)
dictionary_->SetBoolean(name, value);
}
virtual void AddTimeDeltaInSecondsF(const char* name,
- const base::TimeDelta& value) OVERRIDE {
+ const base::TimeDelta& value) override {
if (in_aux_attributes_)
dictionary_->SetDouble(name, value.InSecondsF());
}
- virtual void BeginGPUDevice() OVERRIDE {
+ virtual void BeginGPUDevice() override {
}
- virtual void EndGPUDevice() OVERRIDE {
+ virtual void EndGPUDevice() override {
}
- virtual void BeginVideoEncodeAcceleratorSupportedProfile() OVERRIDE {}
+ virtual void BeginVideoEncodeAcceleratorSupportedProfile() override {}
- virtual void EndVideoEncodeAcceleratorSupportedProfile() OVERRIDE {}
+ virtual void EndVideoEncodeAcceleratorSupportedProfile() override {}
- virtual void BeginAuxAttributes() OVERRIDE {
+ virtual void BeginAuxAttributes() override {
in_aux_attributes_ = true;
}
- virtual void EndAuxAttributes() OVERRIDE {
+ virtual void EndAuxAttributes() override {
in_aux_attributes_ = false;
}
« no previous file with comments | « content/browser/devtools/devtools_protocol.h ('k') | content/browser/devtools/devtools_tracing_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698