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

Unified Diff: media/cdm/ppapi/cdm_file_io_test.h

Issue 1102573006: Update {virtual,override} to follow C++11 style in media. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « media/cdm/ppapi/cdm_file_io_impl.h ('k') | media/cdm/ppapi/cdm_helpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/ppapi/cdm_file_io_test.h
diff --git a/media/cdm/ppapi/cdm_file_io_test.h b/media/cdm/ppapi/cdm_file_io_test.h
index 189c1f6447fcb71cecf42126fdfa424344e87e4c..ccacec84294ee9fdb54ac815534bfd9a82626e4a 100644
--- a/media/cdm/ppapi/cdm_file_io_test.h
+++ b/media/cdm/ppapi/cdm_file_io_test.h
@@ -62,7 +62,7 @@ class FileIOTest : public cdm::FileIOClient {
FileIOTest(const CreateFileIOCB& create_file_io_cb,
const std::string& test_name);
- ~FileIOTest();
+ ~FileIOTest() override;
// Adds a test step in this test. |this| object doesn't take the ownership of
// |data|, which should be valid throughout the lifetime of |this| object.
@@ -96,11 +96,11 @@ class FileIOTest : public cdm::FileIOClient {
static bool MatchesResult(const TestStep& a, const TestStep& b);
// cdm::FileIOClient implementation.
- virtual void OnOpenComplete(Status status) override;
- virtual void OnReadComplete(Status status,
- const uint8_t* data,
- uint32_t data_size) override;
- virtual void OnWriteComplete(Status status) override;
+ void OnOpenComplete(Status status) override;
+ void OnReadComplete(Status status,
+ const uint8_t* data,
+ uint32_t data_size) override;
+ void OnWriteComplete(Status status) override;
// Runs the next step in this test case.
void RunNextStep();
« no previous file with comments | « media/cdm/ppapi/cdm_file_io_impl.h ('k') | media/cdm/ppapi/cdm_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698