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

Unified Diff: src/base/platform/semaphore.h

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 years, 3 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
« no previous file with comments | « src/base/platform/platform-unittest.cc ('k') | src/base/platform/semaphore-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/platform/semaphore.h
diff --git a/src/base/platform/semaphore.h b/src/base/platform/semaphore.h
index b3105e36f0cf5902cec107be66d4f3ae87faddbd..cbf8df2b7da396062514a09e167b8f7231c01c01 100644
--- a/src/base/platform/semaphore.h
+++ b/src/base/platform/semaphore.h
@@ -31,7 +31,7 @@ class TimeDelta;
// count reaches zero, threads waiting for the semaphore blocks until the
// count becomes non-zero.
-class Semaphore V8_FINAL {
+class Semaphore FINAL {
public:
explicit Semaphore(int count);
~Semaphore();
@@ -47,7 +47,7 @@ class Semaphore V8_FINAL {
// time has passed. If timeout happens the return value is false and the
// counter is unchanged. Otherwise the semaphore counter is decremented and
// true is returned.
- bool WaitFor(const TimeDelta& rel_time) V8_WARN_UNUSED_RESULT;
+ bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
#if V8_OS_MACOSX
typedef semaphore_t NativeHandle;
« no previous file with comments | « src/base/platform/platform-unittest.cc ('k') | src/base/platform/semaphore-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698