 Chromium Code Reviews
 Chromium Code Reviews Issue 6452011:
  Rework tree APIs to reflect Google style and more const-correctness....  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/
    
  
    Issue 6452011:
  Rework tree APIs to reflect Google style and more const-correctness....  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/| Index: views/widget/root_view.h | 
| =================================================================== | 
| --- views/widget/root_view.h (revision 74231) | 
| +++ views/widget/root_view.h (working copy) | 
| @@ -80,7 +80,8 @@ | 
| // Tree functions | 
| // Get the Widget that hosts this View. | 
| - virtual Widget* GetWidget() const; | 
| + virtual const Widget* GetWidget() const; | 
| + virtual Widget* GetWidget(); | 
| // Public API for broadcasting theme change notifications to this View | 
| // hierarchy. |