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

Unified Diff: webrtc/test/testsupport/fileutils_unittest.cc

Issue 2548713003: Refactor fileutils.cc/h and fileutils_unittests.cc into their own targets. (Closed)
Patch Set: Fix iOS compile error. Created 4 years 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 | « webrtc/test/testsupport/fileutils.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/testsupport/fileutils_unittest.cc
diff --git a/webrtc/test/testsupport/fileutils_unittest.cc b/webrtc/test/testsupport/fileutils_unittest.cc
index e6699afbc18d4be3e936710291a3bc01acf9714a..5e36c35f77cc5732196dc8f2b5b5737f0fa0d8af 100644
--- a/webrtc/test/testsupport/fileutils_unittest.cc
+++ b/webrtc/test/testsupport/fileutils_unittest.cc
@@ -37,15 +37,15 @@ class FileUtilsTest : public testing::Test {
protected:
FileUtilsTest() {
}
- virtual ~FileUtilsTest() {}
+ ~FileUtilsTest() override {}
// Runs before the first test
static void SetUpTestCase() {
original_working_dir_ = webrtc::test::WorkingDir();
}
- void SetUp() {
+ void SetUp() override {
ASSERT_EQ(chdir(original_working_dir_.c_str()), 0);
}
- void TearDown() {
+ void TearDown() override {
ASSERT_EQ(chdir(original_working_dir_.c_str()), 0);
}
private:
« no previous file with comments | « webrtc/test/testsupport/fileutils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698