Chromium Code Reviews| Index: base/memory/shared_memory_android.cc |
| diff --git a/base/memory/shared_memory_android.cc b/base/memory/shared_memory_android.cc |
| index 6f1d9cb874c664891a1cfaa71920b803ef4c8eaa..b58f833ef3391bdb33bd0538df5124c5107db53e 100644 |
| --- a/base/memory/shared_memory_android.cc |
| +++ b/base/memory/shared_memory_android.cc |
| @@ -52,13 +52,13 @@ bool SharedMemory::Create(const SharedMemoryCreateOptions& options) { |
| return true; |
| } |
| -bool SharedMemory::Delete(const std::string& name) { |
| +bool SharedMemory::Delete(const std::string& /* name */) { |
|
danakj
2016/05/23 02:59:54
delete
Luis Héctor Chávez
2016/05/24 15:27:53
Done.
|
| // Like on Windows, this is intentionally returning true as ashmem will |
| // automatically releases the resource when all FDs on it are closed. |
| return true; |
| } |
| -bool SharedMemory::Open(const std::string& name, bool read_only) { |
| +bool SharedMemory::Open(const std::string& /* name */, bool /* read_only */) { |
|
danakj
2016/05/23 02:59:54
the |name| isn't doing much, but bool isnt clear w
Luis Héctor Chávez
2016/05/24 15:27:53
The problem is that some of these changes are in h
|
| // ashmem doesn't support name mapping |
| NOTIMPLEMENTED(); |
| return false; |