Chromium Code Reviews| Index: ui/aura/window_observer.h |
| diff --git a/ui/aura/window_observer.h b/ui/aura/window_observer.h |
| index ef1259a234d5b99d8e1dd80e3ed51b85fd8c2ff4..0cf808794d52beb95cd482eadd2824f9d1da1067 100644 |
| --- a/ui/aura/window_observer.h |
| +++ b/ui/aura/window_observer.h |
| @@ -6,6 +6,7 @@ |
| #define UI_AURA_WINDOW_OBSERVER_H_ |
| #include "base/basictypes.h" |
| +#include "base/strings/string16.h" |
| #include "ui/aura/aura_export.h" |
| namespace gfx { |
| @@ -112,6 +113,10 @@ class AURA_EXPORT WindowObserver { |
| virtual void OnWindowRemovingFromRootWindow(Window* window, |
| Window* new_root) {} |
| + // Called when the window title has changed. |
| + virtual void OnWindowTitleChanged(Window* window, |
| + const base::string16& new_title) {} |
|
flackr
2014/06/24 17:10:51
nit: since we're not passing the old title I would
Nina
2014/06/24 18:36:28
Done.
|
| + |
| protected: |
| virtual ~WindowObserver(); |