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

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

Issue 2571063002: Remove Blink-in-JS (Closed)
Patch Set: Created 4 years 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: third_party/WebKit/Source/core/testing/PrivateScriptTest.h
diff --git a/third_party/WebKit/Source/core/testing/PrivateScriptTest.h b/third_party/WebKit/Source/core/testing/PrivateScriptTest.h
deleted file mode 100644
index 2f084743ce88477726e4dc8bc090c29ffccc40e4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/testing/PrivateScriptTest.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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 "bindings/core/v8/ScriptWrappable.h"
-#include "platform/heap/Handle.h"
-#include "wtf/text/WTFString.h"
-
-namespace blink {
-
-class Document;
-
-class PrivateScriptTest final
- : public GarbageCollectedFinalized<PrivateScriptTest>,
- public ScriptWrappable {
- DEFINE_WRAPPERTYPEINFO();
-
- public:
- static PrivateScriptTest* create(Document* document) {
- return new PrivateScriptTest(document);
- }
-
- int addIntegerImplementedInCPPForPrivateScriptOnly(int value1, int value2);
- String stringAttributeImplementedInCPPForPrivateScriptOnly();
- void setStringAttributeImplementedInCPPForPrivateScriptOnly(String);
-
- DEFINE_INLINE_TRACE() {}
-
- private:
- explicit PrivateScriptTest(Document*);
-
- String m_stringAttributeImplementedInCPPForPrivateSriptOnly;
-};
-
-} // namespace blink
-
-#endif // PrivateScriptTest_h

Powered by Google App Engine
This is Rietveld 408576698