| Index: cc/surfaces/display.h
 | 
| diff --git a/cc/surfaces/display.h b/cc/surfaces/display.h
 | 
| index 99e66fba194ee055e81e423ca7a0fdfb739ae4e3..ed96d07dd28e4a00129d31a6689a4bd7b87b51bf 100644
 | 
| --- a/cc/surfaces/display.h
 | 
| +++ b/cc/surfaces/display.h
 | 
| @@ -5,6 +5,8 @@
 | 
|  #ifndef CC_SURFACES_DISPLAY_H_
 | 
|  #define CC_SURFACES_DISPLAY_H_
 | 
|  
 | 
| +#include <vector>
 | 
| +
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "cc/output/output_surface_client.h"
 | 
|  #include "cc/output/renderer.h"
 | 
| @@ -101,6 +103,7 @@ class CC_SURFACES_EXPORT Display : public OutputSurfaceClient,
 | 
|    scoped_ptr<DirectRenderer> renderer_;
 | 
|    scoped_ptr<BlockingTaskRunner> blocking_main_thread_task_runner_;
 | 
|    scoped_ptr<TextureMailboxDeleter> texture_mailbox_deleter_;
 | 
| +  std::vector<ui::LatencyInfo> stored_latency_info_;
 | 
|  
 | 
|    DISALLOW_COPY_AND_ASSIGN(Display);
 | 
|  };
 | 
| 
 |