Fix cpp linting issues

This commit is contained in:
Samuel Attard 2016-08-16 15:54:30 +10:00
parent ce986590cf
commit 14154e374a
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF
4 changed files with 24 additions and 12 deletions

View file

@ -76,13 +76,16 @@ class Browser : public WindowListObserver {
void SetAppUserModelID(const base::string16& name);
// Remove the default protocol handler registry key
bool RemoveAsDefaultProtocolClient(const std::string& protocol, mate::Arguments* args);
bool RemoveAsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args);
// Set as default handler for a protocol.
bool SetAsDefaultProtocolClient(const std::string& protocol, mate::Arguments* args);
bool SetAsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args);
// Query the current state of default handler for a protocol.
bool IsDefaultProtocolClient(const std::string& protocol, mate::Arguments* args);
bool IsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args);
// Set/Get the badge count.
bool SetBadgeCount(int count);