| Index: ui/gfx/interpolated_transform.cc
 | 
| diff --git a/ui/gfx/interpolated_transform.cc b/ui/gfx/interpolated_transform.cc
 | 
| index 583c27f05b9988a7d011ddd7d67496fd1e5df126..b9698b160cdc522282e138624e04076af31fca76 100644
 | 
| --- a/ui/gfx/interpolated_transform.cc
 | 
| +++ b/ui/gfx/interpolated_transform.cc
 | 
| @@ -11,7 +11,7 @@
 | 
|  #endif
 | 
|  
 | 
|  #include "base/logging.h"
 | 
| -#include "ui/base/animation/tween.h"
 | 
| +#include "ui/gfx/animation/tween.h"
 | 
|  
 | 
|  namespace {
 | 
|  
 | 
| @@ -125,7 +125,8 @@ inline float InterpolatedTransform::ValueBetween(float time,
 | 
|      return end_value;
 | 
|  
 | 
|    float t = (time - start_time_) / (end_time_ - start_time_);
 | 
| -  return static_cast<float>(Tween::ValueBetween(t, start_value, end_value));
 | 
| +  return static_cast<float>(
 | 
| +      gfx::Tween::ValueBetween(t, start_value, end_value));
 | 
|  }
 | 
|  
 | 
|  ///////////////////////////////////////////////////////////////////////////////
 | 
| 
 |