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

Unified Diff: cc/completion_event.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: cc/completion_event.h
diff --git a/cc/completion_event.h b/cc/completion_event.h
index 795b0303323fb9db75f2444346e860107ecf2944..505baddfe0d60b86b966673bb0015d51a6deb8e5 100644
--- a/cc/completion_event.h
+++ b/cc/completion_event.h
@@ -14,9 +14,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 CCCompletionEvent {
+class CompletionEvent {
public:
- CCCompletionEvent()
+ CompletionEvent()
: m_event(false /* manual_reset */, false /* initially_signaled */)
{
#ifndef NDEBUG
@@ -25,7 +25,7 @@ public:
#endif
}
- ~CCCompletionEvent()
+ ~CompletionEvent()
{
ASSERT(m_waited);
ASSERT(m_signaled);
« cc/active_animation.h ('K') | « cc/checkerboard_draw_quad.cc ('k') | cc/content_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698