| Index: chrome/browser/download/download_request_limiter_unittest.cc
|
| diff --git a/chrome/browser/download/download_request_limiter_unittest.cc b/chrome/browser/download/download_request_limiter_unittest.cc
|
| index 0619044d537fadf1b322798e14d75892a5aaac27..273bc42ce8de13fe3bfbbe9cb940a720b9aab9a6 100644
|
| --- a/chrome/browser/download/download_request_limiter_unittest.cc
|
| +++ b/chrome/browser/download/download_request_limiter_unittest.cc
|
| @@ -36,19 +36,19 @@ class FakePermissionBubbleView : public PermissionBubbleView {
|
| }
|
|
|
| // PermissionBubbleView:
|
| - virtual void SetDelegate(Delegate* delegate) OVERRIDE {
|
| + virtual void SetDelegate(Delegate* delegate) override {
|
| delegate_ = delegate;
|
| }
|
|
|
| virtual void Show(
|
| const std::vector<PermissionBubbleRequest*>& requests,
|
| const std::vector<bool>& accept_state,
|
| - bool customization_mode) OVERRIDE;
|
| + bool customization_mode) override;
|
|
|
| - virtual bool CanAcceptRequestUpdate() OVERRIDE { return false; }
|
| + virtual bool CanAcceptRequestUpdate() override { return false; }
|
|
|
| - virtual void Hide() OVERRIDE {}
|
| - virtual bool IsVisible() OVERRIDE { return false; }
|
| + virtual void Hide() override {}
|
| + virtual bool IsVisible() override { return false; }
|
|
|
| private:
|
| DownloadRequestLimiterTest* test_;
|
|
|