Roll chromium_revision c6076f2..609aa24 (372974:373145)

Change log: c6076f2..609aa24
Full diff: c6076f2..609aa24

Changed dependencies:
* src/third_party/ffmpeg: cab2b46..501a5c5
DEPS diff: c6076f2..609aa24/DEPS

Clang version changed 257955:259395
Details: c6076f2..609aa24/tools/clang/scripts/update.py

NOTRY=True
TBR=pbos@webrtc.org

Review URL: https://codereview.webrtc.org/1660143004

Cr-Commit-Position: refs/heads/master@{#11471}
This commit is contained in:
kjellander
2016-02-03 04:26:34 -08:00
committed by Commit bot
parent d983c3c9e5
commit abe095b879
2 changed files with 2 additions and 2 deletions

2
DEPS
View File

@ -6,7 +6,7 @@
vars = {
'extra_gyp_flag': '-Dextra_gyp_flag=0',
'chromium_git': 'https://chromium.googlesource.com',
'chromium_revision': 'c6076f2213725d472f17191c54ce0e3232a07537',
'chromium_revision': '609aa24c35cd18909dd5e6a76944d8169c2e0057',
}
# NOTE: Prefer revision numbers to tags for svn deps. Use http rather than

View File

@ -249,7 +249,7 @@ class VideoFrameTest : public testing::Test {
}
for (uint32_t i = 0; i < width * height * bpp / 8; ++i) {
char value = ((i / 63) & 1) ? 192 : 64;
uint8_t value = ((i / 63) & 1) ? 192 : 64;
ms->Write(&value, sizeof(value), NULL, NULL);
}
return ms.release();