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

Unified Diff: chrome/service/cloud_print/printer_job_queue_handler_unittest.cc

Issue 679273002: Standardize usage of virtual/override/final specifiers. (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: chrome/service/cloud_print/printer_job_queue_handler_unittest.cc
diff --git a/chrome/service/cloud_print/printer_job_queue_handler_unittest.cc b/chrome/service/cloud_print/printer_job_queue_handler_unittest.cc
index f099359dec682e8b096ec608731ee7b3e989aed6..6026a64428b5e06ee5c4760b898102a0a78c2acc 100644
--- a/chrome/service/cloud_print/printer_job_queue_handler_unittest.cc
+++ b/chrome/service/cloud_print/printer_job_queue_handler_unittest.cc
@@ -53,15 +53,13 @@ class PrinterJobQueueHandlerTest : public ::testing::Test {
protected:
base::Value* data_;
base::DictionaryValue* json_data_;
- virtual void SetUp() {
+ void SetUp() override {
base::JSONReader json_reader;
data_ = json_reader.Read(kJobListResponse);
data_->GetAsDictionary(&json_data_);
}
- virtual void TearDown() {
- delete data_;
- }
+ void TearDown() override { delete data_; }
};
TEST_F(PrinterJobQueueHandlerTest, BasicJobReadTest) {
« no previous file with comments | « chrome/service/cloud_print/printer_job_handler_unittest.cc ('k') | chrome/service/service_process_prefs_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698