| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ |
| 6 #define CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/string16.h" | 9 #include "base/strings/string16.h" |
| 10 | 10 |
| 11 class Panel; | 11 class Panel; |
| 12 namespace gfx { | 12 namespace gfx { |
| 13 class Rect; | 13 class Rect; |
| 14 class Vector2d; | 14 class Vector2d; |
| 15 } | 15 } |
| 16 | 16 |
| 17 class NativePanelStackWindowDelegate { | 17 class NativePanelStackWindowDelegate { |
| 18 public: | 18 public: |
| 19 // Returns the title representing the whole stack. | 19 // Returns the title representing the whole stack. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 // Draws or clears the attention via system. The system might choose to | 85 // Draws or clears the attention via system. The system might choose to |
| 86 // flash the taskbar icon for attention. | 86 // flash the taskbar icon for attention. |
| 87 virtual void DrawSystemAttention(bool draw_attention) = 0; | 87 virtual void DrawSystemAttention(bool draw_attention) = 0; |
| 88 | 88 |
| 89 // Called when the panel is activated. | 89 // Called when the panel is activated. |
| 90 virtual void OnPanelActivated(Panel* panel) = 0; | 90 virtual void OnPanelActivated(Panel* panel) = 0; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 #endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ | 93 #endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_STACK_WINDOW_H_ |
| OLD | NEW |