diff options
Diffstat (limited to 'WebCore/bindings/v8/V8DOMWindowShell.h')
-rw-r--r-- | WebCore/bindings/v8/V8DOMWindowShell.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/bindings/v8/V8DOMWindowShell.h b/WebCore/bindings/v8/V8DOMWindowShell.h index 2ccb410..7958bf1 100644 --- a/WebCore/bindings/v8/V8DOMWindowShell.h +++ b/WebCore/bindings/v8/V8DOMWindowShell.h @@ -37,11 +37,13 @@ #include <wtf/PassRefPtr.h> #include <wtf/RefCounted.h> #include <wtf/RefPtr.h> +#include <wtf/text/AtomicString.h> namespace WebCore { class DOMWindow; class Frame; +class HTMLDocument; // V8WindowShell represents all the per-global object state for a Frame that // persist between navigations. @@ -54,6 +56,9 @@ public: // Update document object of the frame. void updateDocument(); + void namedItemAdded(HTMLDocument*, const AtomicString&); + void namedItemRemoved(HTMLDocument*, const AtomicString&); + // Update the security origin of a document // (e.g., after setting docoument.domain). void updateSecurityOrigin(); |