| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/infobars/infobar_container.h" | 8 #include "components/infobars/core/infobar_container.h" |
| 9 | 9 |
| 10 @class InfoBarContainerController; | 10 @class InfoBarContainerController; |
| 11 | 11 |
| 12 // The cocoa specific implementation of InfoBarContainer. This mostly serves as | 12 // The cocoa specific implementation of InfoBarContainer. This mostly serves as |
| 13 // a bridge for InfoBarContainerController. | 13 // a bridge for InfoBarContainerController. |
| 14 class InfoBarContainerCocoa : public InfoBarContainer, | 14 class InfoBarContainerCocoa : public infobars::InfoBarContainer, |
| 15 public InfoBarContainer::Delegate { | 15 public infobars::InfoBarContainer::Delegate { |
| 16 public: | 16 public: |
| 17 explicit InfoBarContainerCocoa(InfoBarContainerController* controller); | 17 explicit InfoBarContainerCocoa(InfoBarContainerController* controller); |
| 18 virtual ~InfoBarContainerCocoa(); | 18 virtual ~InfoBarContainerCocoa(); |
| 19 | 19 |
| 20 private: | 20 private: |
| 21 // InfoBarContainer: | 21 // InfoBarContainer: |
| 22 virtual void PlatformSpecificAddInfoBar(InfoBar* infobar, | 22 virtual void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar, |
| 23 size_t position) OVERRIDE; | 23 size_t position) OVERRIDE; |
| 24 virtual void PlatformSpecificRemoveInfoBar(InfoBar* infobar) OVERRIDE; | 24 virtual void PlatformSpecificRemoveInfoBar( |
| 25 infobars::InfoBar* infobar) OVERRIDE; |
| 25 | 26 |
| 26 // InfoBarContainer::Delegate: | 27 // InfoBarContainer::Delegate: |
| 27 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; | 28 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; |
| 28 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; | 29 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; |
| 29 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; | 30 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; |
| 30 | 31 |
| 31 InfoBarContainerController* controller_; // weak, owns us. | 32 InfoBarContainerController* controller_; // weak, owns us. |
| 32 | 33 |
| 33 DISALLOW_COPY_AND_ASSIGN(InfoBarContainerCocoa); | 34 DISALLOW_COPY_AND_ASSIGN(InfoBarContainerCocoa); |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 #endif // CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ | 37 #endif // CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_ |
| OLD | NEW |