| Index: content/public/test/layouttest_support.h
 | 
| diff --git a/content/public/test/layouttest_support.h b/content/public/test/layouttest_support.h
 | 
| index b7a77d129f7cf472b322acc0b9ebfca427314c10..c15d84c08b32374c6aecdf8e6c5e9856c0048b40 100644
 | 
| --- a/content/public/test/layouttest_support.h
 | 
| +++ b/content/public/test/layouttest_support.h
 | 
| @@ -18,8 +18,6 @@
 | 
|  class GURL;
 | 
|  
 | 
|  namespace blink {
 | 
| -class WebDeviceMotionData;
 | 
| -class WebDeviceOrientationData;
 | 
|  class WebGamepad;
 | 
|  class WebGamepads;
 | 
|  class WebInputEvent;
 | 
| @@ -33,6 +31,8 @@ class WebURLResponse;
 | 
|  
 | 
|  namespace device {
 | 
|  class BluetoothAdapter;
 | 
| +class MotionData;
 | 
| +class OrientationData;
 | 
|  }
 | 
|  
 | 
|  namespace gfx {
 | 
| @@ -110,13 +110,13 @@ void SetMockGamepadProvider(std::unique_ptr<RendererGamepadProvider> provider);
 | 
|  // a listener through BlinkPlatformImpl::setDeviceLightListener().
 | 
|  void SetMockDeviceLightData(const double data);
 | 
|  
 | 
| -// Sets WebDeviceMotionData that should be used when registering
 | 
| +// Sets MotionData that should be used when registering
 | 
|  // a listener through BlinkPlatformImpl::setDeviceMotionListener().
 | 
| -void SetMockDeviceMotionData(const blink::WebDeviceMotionData& data);
 | 
| +void SetMockDeviceMotionData(const device::MotionData& data);
 | 
|  
 | 
| -// Sets WebDeviceOrientationData that should be used when registering
 | 
| +// Sets OrientationData that should be used when registering
 | 
|  // a listener through BlinkPlatformImpl::setDeviceOrientationListener().
 | 
| -void SetMockDeviceOrientationData(const blink::WebDeviceOrientationData& data);
 | 
| +void SetMockDeviceOrientationData(const device::OrientationData& data);
 | 
|  
 | 
|  // Returns the length of the local session history of a render view.
 | 
|  int GetLocalSessionHistoryLength(RenderView* render_view);
 | 
| 
 |