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

Unified Diff: Source/core/testing/PrivateScriptTest.h

Issue 376553004: Split out tests of private scripts from Internals to PrivateScriptTest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/testing/Internals.js ('k') | Source/core/testing/PrivateScriptTest.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/PrivateScriptTest.h
diff --git a/Source/core/testing/PrivateScriptTest.h b/Source/core/testing/PrivateScriptTest.h
new file mode 100644
index 0000000000000000000000000000000000000000..7a5d06b362876db88d410f132c43621fd9fbbefb
--- /dev/null
+++ b/Source/core/testing/PrivateScriptTest.h
@@ -0,0 +1,28 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PrivateScriptTest_h
+#define PrivateScriptTest_h
+
+#include "platform/heap/Handle.h"
+#include "wtf/RefCounted.h"
+
+namespace WebCore {
+
+class PrivateScriptTest : public GarbageCollected<PrivateScriptTest> {
+public:
+ static PrivateScriptTest* create()
+ {
+ return new PrivateScriptTest();
+ }
+
+ void trace(Visitor*) { }
+
+private:
+ PrivateScriptTest() { }
+};
+
+} // namespace WebCore
+
+#endif
« no previous file with comments | « Source/core/testing/Internals.js ('k') | Source/core/testing/PrivateScriptTest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698