Fix linting

This commit is contained in:
Gabriel Handford 2016-10-14 12:38:55 -07:00 committed by Cheng Zhao
parent c78567aba6
commit cfd2a029ad
4 changed files with 9 additions and 6 deletions

View file

@ -316,8 +316,9 @@ bool OpenExternal(const base::string16& url, bool activate) {
return true;
}
bool OpenExternal(const base::string16& url, bool activate, const OpenExternalCallback& callback) {
// TODO: Implement async open if callback is specified
bool OpenExternal(const base::string16& 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;