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

Unified Diff: third_party/WebKit/Source/core/dom/TestObject.h

Issue 1897783002: [DO NOT COMMIT] CallWith=ScriptState with iframe Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/TestObject.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/TestObject.h
diff --git a/third_party/WebKit/Source/core/dom/TestObject.h b/third_party/WebKit/Source/core/dom/TestObject.h
new file mode 100644
index 0000000000000000000000000000000000000000..d16844e1517986d6d22a94cd75285846c6521579
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/TestObject.h
@@ -0,0 +1,28 @@
+// Copyright 2016 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 TestObject_h
+#define TestObject_h
+
+#include "bindings/core/v8/ScriptState.h"
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "core/dom/ExecutionContext.h"
+#include "platform/heap/Handle.h"
+#include "platform/weborigin/KURL.h"
+#include "wtf/text/WTFString.h"
+
+namespace blink {
+
+class TestObject : public GarbageCollected<TestObject>, public ScriptWrappable {
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ static TestObject* create() { return new TestObject; }
+ String getScriptStateURL(ScriptState* scriptState) const { return scriptState->getExecutionContext()->url().getString(); }
+
+ DEFINE_INLINE_TRACE() {}
+};
+
+} // namespace blink
+
+#endif
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/TestObject.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698