summaryrefslogtreecommitdiffstats
path: root/cc/completion_event.h
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
commitc753e25a8b4366c44134a8c21b9ed3392bf48608 (patch)
treef378c8a762caccf60856a1670ae33dfd638b9453 /cc/completion_event.h
parent503160f80568f024fa712e280bb1a4e1e6ca1ec3 (diff)
downloadchromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.zip
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.gz
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.bz2
Revert "cc: Rename cc classes and members to match filenames"
This reverts commit 184fac5add06d5f4670fa6be4a4d3b39232d51bb. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/completion_event.h')
-rw-r--r--cc/completion_event.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/completion_event.h b/cc/completion_event.h
index fb7f429..6632ab1 100644
--- a/cc/completion_event.h
+++ b/cc/completion_event.h
@@ -15,9 +15,9 @@ namespace cc {
// absolutely certain that doing-so will not lead to a deadlock.
//
// It is safe to destroy this object as soon as wait() returns.
-class CompletionEvent {
+class CCCompletionEvent {
public:
- CompletionEvent()
+ CCCompletionEvent()
: m_event(false /* manual_reset */, false /* initially_signaled */)
{
#ifndef NDEBUG
@@ -26,7 +26,7 @@ public:
#endif
}
- ~CompletionEvent()
+ ~CCCompletionEvent()
{
#ifndef NDEBUG
DCHECK(m_waited);