Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1224)

Unified Diff: chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h
diff --git a/chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h b/chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h
index 442044c9a14528d65e40bde4772e30903604367c..f5dac23b6fe74e9b34ced60d52bc52c57cf088e7 100644
--- a/chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h
+++ b/chrome/browser/ui/cocoa/panels/panel_stack_window_cocoa.h
@@ -33,22 +33,22 @@ class PanelStackWindowCocoa : public NativePanelStackWindow {
protected:
// Overridden from NativePanelStackWindow:
- virtual void Close() OVERRIDE;
- virtual void AddPanel(Panel* panel) OVERRIDE;
- virtual void RemovePanel(Panel* panel) OVERRIDE;
- virtual void MergeWith(NativePanelStackWindow* another) OVERRIDE;
- virtual bool IsEmpty() const OVERRIDE;
- virtual bool HasPanel(Panel* panel) const OVERRIDE;
- virtual void MovePanelsBy(const gfx::Vector2d& delta) OVERRIDE;
- virtual void BeginBatchUpdatePanelBounds(bool animate) OVERRIDE;
+ virtual void Close() override;
+ virtual void AddPanel(Panel* panel) override;
+ virtual void RemovePanel(Panel* panel) override;
+ virtual void MergeWith(NativePanelStackWindow* another) override;
+ virtual bool IsEmpty() const override;
+ virtual bool HasPanel(Panel* panel) const override;
+ virtual void MovePanelsBy(const gfx::Vector2d& delta) override;
+ virtual void BeginBatchUpdatePanelBounds(bool animate) override;
virtual void AddPanelBoundsForBatchUpdate(Panel* panel,
- const gfx::Rect& bounds) OVERRIDE;
- virtual void EndBatchUpdatePanelBounds() OVERRIDE;
- virtual bool IsAnimatingPanelBounds() const OVERRIDE;
- virtual void Minimize() OVERRIDE;
- virtual bool IsMinimized() const OVERRIDE;
- virtual void DrawSystemAttention(bool draw_attention) OVERRIDE;
- virtual void OnPanelActivated(Panel* panel) OVERRIDE;
+ const gfx::Rect& bounds) override;
+ virtual void EndBatchUpdatePanelBounds() override;
+ virtual bool IsAnimatingPanelBounds() const override;
+ virtual void Minimize() override;
+ virtual bool IsMinimized() const override;
+ virtual void DrawSystemAttention(bool draw_attention) override;
+ virtual void OnPanelActivated(Panel* panel) override;
private:
typedef std::list<Panel*> Panels;

Powered by Google App Engine
This is Rietveld 408576698