| Index: chrome/browser/notifications/desktop_notifications_unittest.h
|
| diff --git a/chrome/browser/notifications/desktop_notifications_unittest.h b/chrome/browser/notifications/desktop_notifications_unittest.h
|
| index 646511b17881b718acf4a07c1f3caffbbcea1288..63123aec9a49e1accaa3ca8186687db8794b12b9 100644
|
| --- a/chrome/browser/notifications/desktop_notifications_unittest.h
|
| +++ b/chrome/browser/notifications/desktop_notifications_unittest.h
|
| @@ -38,13 +38,13 @@ class MockBalloonCollection : public BalloonCollectionImpl {
|
|
|
| // BalloonCollectionImpl overrides
|
| virtual void Add(const Notification& notification,
|
| - Profile* profile);
|
| - virtual bool HasSpace() const;
|
| + Profile* profile) OVERRIDE;
|
| + virtual bool HasSpace() const OVERRIDE;
|
| virtual Balloon* MakeBalloon(const Notification& notification,
|
| - Profile* profile);
|
| - virtual void DisplayChanged() {}
|
| - virtual void OnBalloonClosed(Balloon* source);
|
| - virtual const BalloonCollection::Balloons& GetActiveBalloons();
|
| + Profile* profile) OVERRIDE;
|
| + virtual void DisplayChanged() OVERRIDE {}
|
| + virtual void OnBalloonClosed(Balloon* source) OVERRIDE;
|
| + virtual const BalloonCollection::Balloons& GetActiveBalloons() OVERRIDE;
|
|
|
| // Number of balloons being shown.
|
| std::deque<Balloon*>& balloons() { return balloons_; }
|
| @@ -79,8 +79,8 @@ class DesktopNotificationsTest : public testing::Test {
|
|
|
| protected:
|
| // testing::Test overrides
|
| - virtual void SetUp();
|
| - virtual void TearDown();
|
| + virtual void SetUp() OVERRIDE;
|
| + virtual void TearDown() OVERRIDE;
|
|
|
| void AllowOrigin(const GURL& origin) {
|
| service_->GrantPermission(origin);
|
|
|