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

Unified Diff: Source/platform/scheduler/SchedulerTest.cpp

Issue 364873002: Introduce a basic Blink Scheduler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased. Created 6 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: Source/platform/scheduler/SchedulerTest.cpp
diff --git a/Source/modules/crypto/HmacKeyAlgorithm.idl b/Source/platform/scheduler/SchedulerTest.cpp
similarity index 90%
copy from Source/modules/crypto/HmacKeyAlgorithm.idl
copy to Source/platform/scheduler/SchedulerTest.cpp
index 89cc8430ad3e5913bba4fd836e90c14c54bda058..048bd889fc7653c6fc40fc671585db2d513fc4ef 100644
--- a/Source/modules/crypto/HmacKeyAlgorithm.idl
+++ b/Source/platform/scheduler/SchedulerTest.cpp
@@ -28,9 +28,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- NoInterfaceObject
-] interface HmacKeyAlgorithm : KeyAlgorithm {
- readonly attribute KeyAlgorithm hash;
- readonly attribute unsigned long length;
-};
+#include "config.h"
+#include "platform/scheduler/Scheduler.h"
+
+#include <gtest/gtest.h>
+
+using WebCore::Scheduler;
+
+namespace {
+
+TEST(Scheduler, Foo)
+{
+}
+
+} // namespace

Powered by Google App Engine
This is Rietveld 408576698