Home | History | Annotate | Download | only in generic

Lines Matching refs:Frame

36 #include "Frame.h"
52 // Check if the active execution context can access the target frame.
53 static bool canAccessFrame(State<Binding>*, Frame*, bool reportError);
63 static bool shouldAllowNavigation(State<Binding>*, Frame*);
87 Frame* target,
90 // The subject is detached from a frame, deny accesses.
108 Frame* target = getFrame(node);
122 Frame* frame = state->firstFrame();
123 ASSERT(frame);
124 Settings* settings = frame->settings();
129 bool BindingSecurity<Binding>::allowSettingFrameSrcToJavascriptUrl(State<Binding>* state, HTMLFrameElementBase* frame, String value)
132 Node* contentDoc = frame->contentDocument();
148 bool BindingSecurity<Binding>::shouldAllowNavigation(State<Binding>* state, Frame* frame)
150 Frame* activeFrame = state->activeFrame();
151 return activeFrame && activeFrame->loader()->shouldAllowNavigation(frame);