| Index: content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.cc b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| index a6494e5d34508c461aa8199fb8a1ca1429680ece..f5760a6fdd2765fd8c5270a42fc3078ca052a60b 100644
|
| --- a/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| +++ b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| @@ -7,6 +7,7 @@
|
| #include <algorithm>
|
| #include <vector>
|
|
|
| +#include "build/build_config.h"
|
| #include "cc/surfaces/surface.h"
|
| #include "cc/surfaces/surface_factory.h"
|
| #include "cc/surfaces/surface_manager.h"
|
| @@ -241,7 +242,7 @@ void RenderWidgetHostViewChildFrame::UnlockCompositingSurface() {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -void RenderWidgetHostViewChildFrame::SurfaceDrawn(uint32 output_surface_id,
|
| +void RenderWidgetHostViewChildFrame::SurfaceDrawn(uint32_t output_surface_id,
|
| cc::SurfaceDrawStatus drawn) {
|
| cc::CompositorFrameAck ack;
|
| DCHECK_GT(ack_pending_count_, 0U);
|
| @@ -255,8 +256,8 @@ void RenderWidgetHostViewChildFrame::SurfaceDrawn(uint32 output_surface_id,
|
| }
|
|
|
| void RenderWidgetHostViewChildFrame::OnSwapCompositorFrame(
|
| - uint32 output_surface_id,
|
| - scoped_ptr<cc::CompositorFrame> frame) {
|
| + uint32_t output_surface_id,
|
| + scoped_ptr<cc::CompositorFrame> frame) {
|
| last_scroll_offset_ = frame->metadata.root_scroll_offset;
|
|
|
| if (!frame_connector_)
|
|
|