| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/flip/flip_network_transaction.h" | 5 #include "net/flip/flip_network_transaction.h" |
| 6 | 6 |
| 7 #include "base/scoped_ptr.h" | 7 #include "base/scoped_ptr.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/field_trial.h" | 9 #include "base/field_trial.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 } | 405 } |
| 406 | 406 |
| 407 int FlipNetworkTransaction::DoReadBodyComplete(int result) { | 407 int FlipNetworkTransaction::DoReadBodyComplete(int result) { |
| 408 // TODO(mbelshe): record success or failure of the transaction? | 408 // TODO(mbelshe): record success or failure of the transaction? |
| 409 if (user_callback_) | 409 if (user_callback_) |
| 410 DoHttpTransactionCallback(result); | 410 DoHttpTransactionCallback(result); |
| 411 return OK; | 411 return OK; |
| 412 } | 412 } |
| 413 | 413 |
| 414 } // namespace net | 414 } // namespace net |
| OLD | NEW |