 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/animation/bounds_animator.cc | 
| =================================================================== | 
| --- views/animation/bounds_animator.cc (revision 74231) | 
| +++ views/animation/bounds_animator.cc (working copy) | 
| @@ -39,7 +39,7 @@ | 
| void BoundsAnimator::AnimateViewTo(View* view, const gfx::Rect& target) { | 
| DCHECK(view); | 
| - DCHECK_EQ(view->GetParent(), parent_); | 
| + DCHECK_EQ(view->parent(), parent_); | 
| Data existing_data; |