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

Unified Diff: ui/surface/transport_dib_posix.cc

Issue 13529027: Switch Linux Auru ports over to POSIX SHM instead of legacy SYSV SHM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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/surface/transport_dib_posix.cc
===================================================================
--- ui/surface/transport_dib_posix.cc (revision 192629)
+++ ui/surface/transport_dib_posix.cc (working copy)
@@ -5,8 +5,7 @@
#include "ui/surface/transport_dib.h"
// Desktop GTK Linux builds use the old-style SYSV SHM based DIBs.
-// Linux Aura and Chrome OS do too. This will change very soon.
-#if !defined(TOOLKIT_GTK) && !(defined(OS_LINUX) && defined(USE_AURA))
+#if !defined(TOOLKIT_GTK)
rjkroege 2013/05/16 19:29:42 perhaps get rid of the #define and force-exclude _
#include <sys/stat.h>
#include <unistd.h>
@@ -114,5 +113,5 @@
return shared_memory_.handle();
}
-#endif // !defined(TOOLKIT_GTK) && !(defined(OS_LINUX) && defined(USE_AURA))
+#endif // !defined(TOOLKIT_GTK)

Powered by Google App Engine
This is Rietveld 408576698