Address cpplint issue "{ should almost always be at the end of the previous line [whitespace/braces] [4]"
This commit is contained in:
parent
63eeb96e71
commit
29f3332276
9 changed files with 152 additions and 304 deletions
|
@ -4,26 +4,22 @@
|
|||
|
||||
namespace brightray {
|
||||
|
||||
class Win32Notification : public brightray::Notification
|
||||
{
|
||||
class Win32Notification : public brightray::Notification {
|
||||
public:
|
||||
Win32Notification(NotificationDelegate* delegate,
|
||||
NotificationPresenterWin7* presenter) :
|
||||
Notification(delegate, presenter)
|
||||
{
|
||||
Notification(delegate, presenter) {
|
||||
}
|
||||
void Show(const base::string16& title, const base::string16& msg,
|
||||
const std::string& tag, const GURL& icon_url,
|
||||
const SkBitmap& icon, const bool silent) override;
|
||||
void Dismiss() override;
|
||||
|
||||
const DesktopNotificationController::Notification& GetRef() const
|
||||
{
|
||||
const DesktopNotificationController::Notification& GetRef() const {
|
||||
return notification_ref_;
|
||||
}
|
||||
|
||||
const std::string& GetTag() const
|
||||
{
|
||||
const std::string& GetTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue