Fix typo
This commit is contained in:
parent
b266533dfc
commit
3eb5f8d521
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ bool OpenExternal(const base::string16& url, bool activate) {
|
||||||
|
|
||||||
bool OpenExternal(const base::string16& url, bool activate, const OpenExternalCallback& callback) {
|
bool OpenExternal(const base::string16& url, bool activate, const OpenExternalCallback& callback) {
|
||||||
// TODO: Implement async open if callback is specified
|
// TODO: Implement async open if callback is specified
|
||||||
bool opened = openExternal(url, activate)
|
bool opened = openExternal(url, activate);
|
||||||
callback(opened);
|
callback(opened);
|
||||||
return opened;
|
return opened;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue