diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 05:43:50 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 05:43:50 +0000 |
commit | 7fd8fa4f297ee7f4772bf83333aa3efe03754c08 (patch) | |
tree | cb749dbea166a834439be297abf1011088d0bf7e /webkit/fileapi/syncable/syncable_file_system_unittest.cc | |
parent | a6d33303cac4c5eda9c6b994a1860bee861a19e1 (diff) | |
download | chromium_src-7fd8fa4f297ee7f4772bf83333aa3efe03754c08.zip chromium_src-7fd8fa4f297ee7f4772bf83333aa3efe03754c08.tar.gz chromium_src-7fd8fa4f297ee7f4772bf83333aa3efe03754c08.tar.bz2 |
Linux/ChromeOS Chromium style checker cleanup, webkit/ edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://chromiumcodereview.appspot.com/12225038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181219 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_unittest.cc')
-rw-r--r-- | webkit/fileapi/syncable/syncable_file_system_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_unittest.cc b/webkit/fileapi/syncable/syncable_file_system_unittest.cc index d2ad547..255a039 100644 --- a/webkit/fileapi/syncable/syncable_file_system_unittest.cc +++ b/webkit/fileapi/syncable/syncable_file_system_unittest.cc @@ -31,7 +31,7 @@ class SyncableFileSystemTest : public testing::Test { base::MessageLoopProxy::current()), weak_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {} - void SetUp() { + virtual void SetUp() { file_system_.SetUp(); sync_context_ = new LocalFileSyncContext(base::MessageLoopProxy::current(), @@ -40,7 +40,7 @@ class SyncableFileSystemTest : public testing::Test { file_system_.MaybeInitializeFileSystemContext(sync_context_)); } - void TearDown() { + virtual void TearDown() { if (sync_context_) sync_context_->ShutdownOnUIThread(); sync_context_ = NULL; |