Fix linting
This commit is contained in:
parent
c78567aba6
commit
cfd2a029ad
4 changed files with 9 additions and 6 deletions
|
@ -88,8 +88,9 @@ bool OpenExternal(const GURL& url, bool activate) {
|
|||
return XDGOpen(url.spec(), false);
|
||||
}
|
||||
|
||||
bool OpenExternal(const GURL& url, bool activate, const OpenExternalCallback& callback) {
|
||||
// TODO: Implement async open if callback is specified
|
||||
bool OpenExternal(const GURL& url, bool activate,
|
||||
const OpenExternalCallback& callback) {
|
||||
// TODO(gabriel): Implement async open if callback is specified
|
||||
bool opened = OpenExternal(url, activate);
|
||||
callback.Run(opened);
|
||||
return opened;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue