| 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_request.h" | 5 #include "net/test/embedded_test_server/http_request.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/strings/string_split.h" | 12 #include "base/strings/string_split.h" |
| 13 | 13 |
| 14 namespace google_apis { | 14 namespace google_apis { |
| 15 namespace test_server { | 15 namespace test_server { |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 return METHOD_DELETE; | 193 return METHOD_DELETE; |
| 194 } else if (token == "patch") { | 194 } else if (token == "patch") { |
| 195 return METHOD_PATCH; | 195 return METHOD_PATCH; |
| 196 } | 196 } |
| 197 NOTREACHED() << "Method not implemented: " << token; | 197 NOTREACHED() << "Method not implemented: " << token; |
| 198 return METHOD_UNKNOWN; | 198 return METHOD_UNKNOWN; |
| 199 } | 199 } |
| 200 | 200 |
| 201 } // namespace test_server | 201 } // namespace test_server |
| 202 } // namespace google_apis | 202 } // namespace google_apis |
| OLD | NEW |