Index: cc/surfaces/display.h |
diff --git a/cc/surfaces/display.h b/cc/surfaces/display.h |
index 75ee4c92203df26a77e85ea9e4ac6e701ef8f415..abc3e73e092c9dc0d84cac40a485e8f78492df1e 100644 |
--- a/cc/surfaces/display.h |
+++ b/cc/surfaces/display.h |
@@ -75,8 +75,6 @@ class CC_SURFACES_EXPORT Display : public DisplaySchedulerClient, |
void SetVisible(bool visible); |
void Resize(const gfx::Size& new_size); |
void SetColorSpace(const gfx::ColorSpace& color_space); |
- void SetExternalClip(const gfx::Rect& clip); |
- void SetExternalViewport(const gfx::Rect& viewport); |
void SetOutputIsSecure(bool secure); |
const SurfaceId& CurrentSurfaceId(); |
@@ -126,8 +124,6 @@ class CC_SURFACES_EXPORT Display : public DisplaySchedulerClient, |
gfx::ColorSpace device_color_space_; |
bool visible_ = false; |
bool swapped_since_resize_ = false; |
- gfx::Rect external_clip_; |
- gfx::Rect external_viewport_; |
bool output_is_secure_ = false; |
// The begin_frame_source_ is often known by the output_surface_ and |