summaryrefslogtreecommitdiffstats
path: root/base/shared_memory_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/shared_memory_win.cc')
-rw-r--r--base/shared_memory_win.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/base/shared_memory_win.cc b/base/shared_memory_win.cc
index 4c56a70..4ae4752 100644
--- a/base/shared_memory_win.cc
+++ b/base/shared_memory_win.cc
@@ -66,6 +66,11 @@ bool SharedMemory::Create(const std::wstring &name, bool read_only,
return true;
}
+bool SharedMemory::Delete(const std::wstring& name) {
+ // intentionally empty -- there is nothing for us to do on Windows.
+ return true;
+}
+
bool SharedMemory::Open(const std::wstring &name, bool read_only) {
DCHECK(mapped_file_ == NULL);