Index: ash/wm/boot_splash_screen_chromeos.cc |
diff --git a/ash/wm/boot_splash_screen_chromeos.cc b/ash/wm/boot_splash_screen_chromeos.cc |
index c9516d7605ffe5933f13122f613e9251c942a47c..34ee5bb5dc29a9e73f63aada5d53795e38b55d26 100644 |
--- a/ash/wm/boot_splash_screen_chromeos.cc |
+++ b/ash/wm/boot_splash_screen_chromeos.cc |
@@ -34,8 +34,13 @@ class BootSplashScreen::CopyHostContentLayerDelegate |
// TODO(derat): Instead of copying the data, use GLX_EXT_texture_from_pixmap |
// to create a zero-copy texture (when possible): |
// https://codereview.chromium.org/10543125 |
+#if defined(USE_X11) |
ui::CopyAreaToCanvas(host_->GetAcceleratedWidget(), |
host_->GetBounds(), gfx::Point(), canvas); |
+#else |
+ // TODO(spang): Figure out what to do here. |
+ NOTIMPLEMENTED(); |
+#endif |
} |
virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE {} |