Update to build against libchrome-293518.
libchrome is updated from revision 271506 to 293518. This CL updates platform2 code to build against libchrome-293518 with the following changes: - LOG_ERROR_REPORT is removed (https://codereview.chromium.org/331143007) - StringToLowerASCII is moved to base namespace (https://codereview.chromium.org/448853002) BUG=chromium:411001 CQ-DEPEND=CL:216584 CQ-DEPEND=CL:216585 CQ-DEPEND=CL:216586 CQ-DEPEND=CL:216511 CQ-DEPEND=CL:217084 CQ-DEPEND=CL:217085 TEST=Trybot run on paladin, release, and chromiumos-sdk builders. Change-Id: I9fbdad30b3a7c79c1ec4e208664b8befea31a3ec Reviewed-on: https://chromium-review.googlesource.com/216589 Reviewed-by: Alex Vakulenko <avakulenko@chromium.org> Tested-by: Ben Chan <benchan@chromium.org> Commit-Queue: Ben Chan <benchan@chromium.org>
This commit is contained in:
parent
895fa5d99f
commit
b63e528a56
|
@ -76,7 +76,7 @@ std::deque<std::string> ParseProxyString(const std::string &input) {
|
|||
}
|
||||
|
||||
std::string scheme = std::string(token.begin(), space);
|
||||
StringToLowerASCII(&scheme);
|
||||
base::StringToLowerASCII(&scheme);
|
||||
// Chrome uses "socks" to mean socks4 and "proxy" to mean http.
|
||||
if (scheme == "socks")
|
||||
scheme += "4";
|
||||
|
|
Loading…
Reference in New Issue