| Index: cc/surfaces/display.cc
|
| diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
|
| index 85d28b1e588d1e5370c6227c87ad68ed71d2e41c..a39695f573221ce4f13b924adbb76dc4c0d955e3 100644
|
| --- a/cc/surfaces/display.cc
|
| +++ b/cc/surfaces/display.cc
|
| @@ -153,8 +153,8 @@ bool Display::Draw() {
|
| return true;
|
| }
|
|
|
| -int Display::CurrentSurfaceID() {
|
| - return current_surface_ ? current_surface_->surface_id() : 0;
|
| +SurfaceId Display::CurrentSurfaceId() {
|
| + return current_surface_ ? current_surface_->surface_id() : SurfaceId();
|
| }
|
|
|
| void Display::ReturnResources(const ReturnedResourceArray& resources) {
|
|
|