| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "base/strings/string16.h" | 6 #include "base/strings/string16.h" |
| 7 #include "base/strings/string_piece.h" | 7 #include "base/strings/string_piece.h" |
| 8 #include "net/base/net_string_util.h" | 8 #include "net/base/net_string_util.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 return false; | 34 return false; |
| 35 } | 35 } |
| 36 | 36 |
| 37 bool ConvertToUTF16WithSubstitutions(const std::string& text, | 37 bool ConvertToUTF16WithSubstitutions(const std::string& text, |
| 38 const char* charset, | 38 const char* charset, |
| 39 base::string16* output) { | 39 base::string16* output) { |
| 40 DCHECK(false) << "Not implemented yet."; | 40 DCHECK(false) << "Not implemented yet."; |
| 41 return false; | 41 return false; |
| 42 } | 42 } |
| 43 | 43 |
| 44 } // namespace net | 44 } // namespace net |
| OLD | NEW |