Merge pull request #10307 from liusy182/10240-theme-color-2

return null when theme color is transparent or not found
This commit is contained in:
Cheng Zhao 2017-09-11 18:40:35 +09:00 committed by GitHub
commit cc9771a3d0
4 changed files with 28 additions and 2 deletions

View file

@ -761,7 +761,11 @@ void WebContents::MediaStoppedPlaying(const MediaPlayerInfo& video_type,
}
void WebContents::DidChangeThemeColor(SkColor theme_color) {
Emit("did-change-theme-color", atom::ToRGBHex(theme_color));
if (theme_color != SK_ColorTRANSPARENT) {
Emit("did-change-theme-color", atom::ToRGBHex(theme_color));
} else {
Emit("did-change-theme-color", nullptr);
}
}
void WebContents::DocumentLoadedInFrame(