Commit 00128b5b authored by gunsch's avatar gunsch Committed by Commit bot

Chromecast: use ARGB format for WebColor.

R=lcwu@chromium.org
BUG=None

Review URL: https://codereview.chromium.org/615113002

Cr-Commit-Position: refs/heads/master@{#297458}
parent 71671602
......@@ -21,8 +21,9 @@ namespace shell {
namespace {
// Default background color to set for WebViews
const blink::WebColor kColorBlack = 0x000000FF;
// Default background color to set for WebViews. WebColor is in ARGB format
// though the comment of WebColor says it is in RGBA.
const blink::WebColor kColorBlack = 0xFF000000;
} // namespace
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment