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

Unified Diff: include/utils/SkCountdown.h

Issue 338633011: Deprecate SkPicture::clone(). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add define for chrome Created 6 years, 6 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: include/utils/SkCountdown.h
diff --git a/include/utils/SkCountdown.h b/include/utils/SkCountdown.h
deleted file mode 100644
index 6bcec7d5ff921efabb3c52c0593218498d523c88..0000000000000000000000000000000000000000
--- a/include/utils/SkCountdown.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright 2012 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkCountdown_DEFINED
-#define SkCountdown_DEFINED
-
-#include "SkCondVar.h"
-#include "SkRunnable.h"
-#include "SkTypes.h"
-
-class SkCountdown : public SkRunnable {
-public:
- explicit SkCountdown(int32_t count);
-
- /**
- * Resets the countdown to the count provided.
- */
- void reset(int32_t count);
-
- virtual void run() SK_OVERRIDE;
-
- /**
- * Blocks until run() has been called count times.
- */
- void wait();
-
-private:
- SkCondVar fReady;
- int32_t fCount;
-};
-
-#endif
« no previous file with comments | « include/core/SkPicture.h ('k') | src/core/SkPicture.cpp » ('j') | src/core/SkPicturePlayback.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698