Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: ui/gfx/screen_aura.cc

Issue 7833016: aura: A few changes to have aura_demo compile and run on linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: events Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gfx/screen_aura.cc
diff --git a/ui/gfx/screen_aura.cc b/ui/gfx/screen_aura.cc
index 75b0afcfd771119df0a6bbb0720606b8c62e20a3..b47a832fac696e84e0e03db2a7167286106f19d0 100644
--- a/ui/gfx/screen_aura.cc
+++ b/ui/gfx/screen_aura.cc
@@ -4,7 +4,9 @@
#include "ui/gfx/screen.h"
+#if defined(OS_WIN)
#include <windows.h>
+#endif
#include "base/logging.h"
@@ -17,6 +19,8 @@ gfx::Point Screen::GetCursorScreenPoint() {
GetCursorPos(&pt);
return gfx::Point(pt);
#endif
+ NOTIMPLEMENTED();
+ return gfx::Point();
}
// static

Powered by Google App Engine
This is Rietveld 408576698