Index: ui/views/widget/native_widget_aura.cc |
diff --git a/ui/views/widget/native_widget_aura.cc b/ui/views/widget/native_widget_aura.cc |
index a90db1fcdf3acfdab4c5a58248466c39c0230675..6bb1cf2201ff0eaeca24727930c5608210bde463 100644 |
--- a/ui/views/widget/native_widget_aura.cc |
+++ b/ui/views/widget/native_widget_aura.cc |
@@ -832,6 +832,13 @@ void NativeWidgetAura::GetHitTestMask(gfx::Path* mask) const { |
delegate_->GetHitTestMask(mask); |
} |
+scoped_refptr<ui::Texture> NativeWidgetAura::CopyTexture() { |
+ // The layer we create doesn't have an external texture, so this should never |
+ // get invoked. |
+ NOTREACHED(); |
+ return scoped_refptr<ui::Texture>(); |
+} |
+ |
//////////////////////////////////////////////////////////////////////////////// |
// NativeWidgetAura, ui::EventHandler implementation: |