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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h

Issue 10825189: [NaCl SDK] Get nacl_mounts_tests building. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows fixes Created 8 years, 4 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: native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h b/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
index 141a788f24b21d08774b35eb186447e6f8e3cfa8..4c11606392be69a0330b8c6b3a17839a0dab8c02 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
+++ b/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
@@ -31,7 +31,7 @@ class KernelHandle : public RefObject {
friend class KernelObject;
friend class KernelProxy;
void Acquire() { RefObject::Acquire(); }
- void Release() { RefObject::Release(); }
+ bool Release() { return RefObject::Release(); }
noelallen1 2012/08/09 18:26:57 I originally had this as bool, then realized I nev
binji 2012/08/09 19:39:23 Yes, see my other comment.
DISALLOW_COPY_AND_ASSIGN(KernelHandle);
};

Powered by Google App Engine
This is Rietveld 408576698