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

Side by Side Diff: net/ftp/ftp_network_transaction.cc

Issue 43148: Remove unneeded uses of logging.h in header files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "net/ftp/ftp_network_transaction.h" 5 #include "net/ftp/ftp_network_transaction.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h"
8 #include "net/base/client_socket.h" 9 #include "net/base/client_socket.h"
9 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
10 #include "net/ftp/ftp_network_session.h" 11 #include "net/ftp/ftp_network_session.h"
11 12
12 namespace net { 13 namespace net {
13 14
14 FtpNetworkTransaction::FtpNetworkTransaction( 15 FtpNetworkTransaction::FtpNetworkTransaction(
15 FtpNetworkSession* session, ClientSocketFactory* socket_factory) 16 FtpNetworkSession* session, ClientSocketFactory* socket_factory)
16 : ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, 17 : ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this,
17 &FtpNetworkTransaction::OnIOComplete)), 18 &FtpNetworkTransaction::OnIOComplete)),
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 196
196 int FtpNetworkTransaction::DoDataRead() { 197 int FtpNetworkTransaction::DoDataRead() {
197 return ERR_FAILED; // TODO(darin): implement me 198 return ERR_FAILED; // TODO(darin): implement me
198 } 199 }
199 200
200 int FtpNetworkTransaction::DoDataReadComplete(int result) { 201 int FtpNetworkTransaction::DoDataReadComplete(int result) {
201 return ERR_FAILED; // TODO(darin): implement me 202 return ERR_FAILED; // TODO(darin): implement me
202 } 203 }
203 204
204 } // namespace net 205 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698