Update to Chromium revision 3a87aecc (#433059)

This commit is contained in:
Marshall Greenblatt
2016-11-23 15:54:29 -05:00
parent c6881fe145
commit 12aeeb13f7
126 changed files with 1643 additions and 1436 deletions

View File

@@ -711,7 +711,11 @@ class OSRTestHandler : public RoutingTestHandler,
#if defined(OS_MACOSX)
EXPECT_EQ(0xff5d99d6, *(reinterpret_cast<const uint32*>(buffer)));
#elif defined(OS_LINUX) || defined(OS_WIN)
EXPECT_EQ(0xff6497ea, *(reinterpret_cast<const uint32*>(buffer)));
if (scale_factor_ == 1.0) {
EXPECT_EQ(0xff6497ea, *(reinterpret_cast<const uint32*>(buffer)));
} else {
EXPECT_EQ(0xff4d90fe, *(reinterpret_cast<const uint32*>(buffer)));
}
#else
#error "Unsupported platform"
#endif