| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/google_apis/test_server/http_response.h" | 5 #include "net/test/embedded_test_server/http_response.h" |
| 6 | 6 |
| 7 #include "base/format_macros.h" | 7 #include "base/format_macros.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/stringprintf.h" | 9 #include "base/stringprintf.h" |
| 10 | 10 |
| 11 namespace google_apis { | 11 namespace google_apis { |
| 12 namespace test_server { | 12 namespace test_server { |
| 13 | 13 |
| 14 HttpResponse::HttpResponse() : code_(SUCCESS) { | 14 HttpResponse::HttpResponse() : code_(SUCCESS) { |
| 15 } | 15 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 45 header_name.c_str(), | 45 header_name.c_str(), |
| 46 header_value.c_str()); | 46 header_value.c_str()); |
| 47 } | 47 } |
| 48 base::StringAppendF(&response_builder, "\r\n"); | 48 base::StringAppendF(&response_builder, "\r\n"); |
| 49 | 49 |
| 50 return response_builder + content_; | 50 return response_builder + content_; |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace test_server | 53 } // namespace test_server |
| 54 } // namespace google_apis | 54 } // namespace google_apis |
| OLD | NEW |