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

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

Issue 10829027: [NaCl SDK] Add nacl_mounts to NaCl SDK build. Experimental for now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for windows Created 8 years, 5 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 a3fb7e09776e717af195f4244780eb2ca3fb3dd7..141a788f24b21d08774b35eb186447e6f8e3cfa8 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
+++ b/native_client_sdk/src/libraries/nacl_mounts/kernel_handle.h
@@ -2,7 +2,6 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-
#ifndef LIBRARIES_NACL_MOUNTS_KERNEL_HANDLE_H_
#define LIBRARIES_NACL_MOUNTS_KERNEL_HANDLE_H_
@@ -32,7 +31,7 @@ class KernelHandle : public RefObject {
friend class KernelObject;
friend class KernelProxy;
void Acquire() { RefObject::Acquire(); }
- bool Release() { return RefObject::Release(); }
+ void Release() { RefObject::Release(); }
DISALLOW_COPY_AND_ASSIGN(KernelHandle);
};

Powered by Google App Engine
This is Rietveld 408576698