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

Unified Diff: net/base/file_stream_unittest.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « jingle/notifier/listener/push_notifications_listen_task.h ('k') | net/disk_cache/mapped_file_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/file_stream_unittest.cc
diff --git a/net/base/file_stream_unittest.cc b/net/base/file_stream_unittest.cc
index 82aaa24308f685ee24c574ea49031dc655a3ddc9..a8cdfcc85fcf52da9c953ecbe1c76e80f5ff9247 100644
--- a/net/base/file_stream_unittest.cc
+++ b/net/base/file_stream_unittest.cc
@@ -646,7 +646,7 @@ TEST_F(FileStreamTest, BasicAsyncWriteRead) {
class TestWriteReadCompletionCallback : public Callback1<int>::Type {
public:
- explicit TestWriteReadCompletionCallback(
+ TestWriteReadCompletionCallback(
FileStream* stream,
int* total_bytes_written,
int* total_bytes_read,
@@ -776,8 +776,7 @@ TEST_F(FileStreamTest, AsyncWriteRead) {
class TestWriteCloseCompletionCallback : public Callback1<int>::Type {
public:
- explicit TestWriteCloseCompletionCallback(FileStream* stream,
- int* total_bytes_written)
+ TestWriteCloseCompletionCallback(FileStream* stream, int* total_bytes_written)
: result_(0),
have_result_(false),
waiting_for_result_(false),
« no previous file with comments | « jingle/notifier/listener/push_notifications_listen_task.h ('k') | net/disk_cache/mapped_file_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698