This commit is contained in:
Gabriel Handford 2016-10-13 19:10:12 -07:00 committed by Cheng Zhao
parent b266533dfc
commit 3eb5f8d521

View file

@ -322,7 +322,7 @@ bool OpenExternal(const base::string16& url, bool activate) {
bool OpenExternal(const base::string16& url, bool activate, const OpenExternalCallback& callback) {
// TODO: Implement async open if callback is specified
bool opened = openExternal(url, activate)
bool opened = openExternal(url, activate);
callback(opened);
return opened;
}