Update to Chromium revision 939b32ee (#454471)

This commit is contained in:
Marshall Greenblatt
2017-03-03 17:37:23 -05:00
parent fe68aee82c
commit 54647945f1
127 changed files with 1874 additions and 964 deletions

View File

@@ -173,7 +173,7 @@ class TestSchemeHandler : public TestHandler {
const CefString& failedUrl) override {
test_results_->got_error.yes();
// Check that the error code matches the expectation.
EXPECT_EQ(errorCode, test_results_->expected_error_code);
EXPECT_EQ(test_results_->expected_error_code, errorCode);
DestroyTest();
}
@@ -1670,7 +1670,9 @@ void RegisterSchemeHandlerCustomSchemes(
CefRawPtr<CefSchemeRegistrar> registrar,
std::vector<CefString>& cookiable_schemes) {
// Add a custom standard scheme.
registrar->AddCustomScheme("customstd", true, false, false, false, true);
registrar->AddCustomScheme("customstd", true, false, false, false, true,
false);
// Ad a custom non-standard scheme.
registrar->AddCustomScheme("customnonstd", false, false, false, false, false);
registrar->AddCustomScheme("customnonstd", false, false, false, false, false,
false);
}