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

Unified Diff: ui/gfx/surface/transport_dib_win.cc

Issue 8585002: Give base::SharedMemory::CreateAnonymous an executable flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« base/metrics/stats_table.cc ('K') | « ui/gfx/blit_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/surface/transport_dib_win.cc
diff --git a/ui/gfx/surface/transport_dib_win.cc b/ui/gfx/surface/transport_dib_win.cc
index a7df666863e27f93decf4cc4f45c2f8166ec2ddb..b9b76dc3ea8d7d8bb671a737689653461024c759 100644
--- a/ui/gfx/surface/transport_dib_win.cc
+++ b/ui/gfx/surface/transport_dib_win.cc
@@ -31,7 +31,7 @@ TransportDIB* TransportDIB::Create(size_t size, uint32 sequence_num) {
TransportDIB* dib = new TransportDIB;
- if (!dib->shared_memory_.CreateAnonymous(size)) {
+ if (!dib->shared_memory_.CreateAnonymous(size, false)) {
delete dib;
return NULL;
}
« base/metrics/stats_table.cc ('K') | « ui/gfx/blit_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698