HomeSort by relevance Sort by last modified time
    Searched refs:sourceFrame (Results 1 - 23 of 23) sorted by null

  /external/webkit/WebCore/loader/
FormState.cpp 37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
39 , m_sourceFrame(sourceFrame)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
47 return adoptRef(new FormState(form, textFieldValuesToAdopt, sourceFrame, formSubmissionTrigger));
FormState.h 52 Frame* sourceFrame() const { return m_sourceFrame.get(); }
RedirectScheduler.cpp 322 if (!redirection->formState->sourceFrame()->loader()->shouldAllowNavigation(m_frame))
FrameLoader.cpp 458 ASSERT(formState->sourceFrame() == m_frame);
    [all...]
  /external/webkit/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 48 SecurityOrigin* origin, Frame* sourceFrame)
50 ASSERT(!sourceFrame); // Sad, but true.
StorageAreaProxy.h 49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
50 virtual String removeItem(const String& key, Frame* sourceFrame);
51 virtual bool clear(Frame* sourceFrame);
55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageAreaProxy.cpp 110 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
112 Page* page = sourceFrame->page();
122 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
127 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->sessionStorage()));
134 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
140 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->localStorage()));
  /external/webkit/WebCore/storage/
StorageArea.h 53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
54 virtual String removeItem(const String& key, Frame* sourceFrame) = 0;
55 virtual bool clear(Frame* sourceFrame) = 0;
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageEventDispatcher.cpp 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
43 Page* page = sourceFrame->page();
53 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
58 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->sessionStorage()));
65 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
71 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->localStorage()));
StorageAreaImpl.h 51 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
52 virtual String removeItem(const String& key, Frame* sourceFrame);
53 virtual bool clear(Frame* sourceFrame);
StorageAreaSync.h 57 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
  /external/webkit/WebCore/inspector/front-end/
SourceView.js 35 this.sourceFrame = new WebInspector.SourceFrame(this.contentElement, this._addBreakpoint.bind(this), this._removeBreakpoint.bind(this));
44 this.sourceFrame.visible = true;
51 this.sourceFrame.visible = false;
57 if (this.sourceFrame)
58 this.sourceFrame.resize();
79 this.sourceFrame.setContent(this.resource.mimeType, content, this.resource.url);
124 this.sourceFrame.clearMarkedRange();
137 this._searchResults = this.sourceFrame.findSearchMatches(query);
199 this.sourceFrame.revealLine(lineNumber)
    [all...]
ScriptView.js 36 this.sourceFrame = new WebInspector.SourceFrame(this.element, this._addBreakpoint.bind(this), this._removeBreakpoint.bind(this));
44 this.sourceFrame.visible = true;
55 this.sourceFrame.setContent("text/javascript", this.script.source);
ScriptsPanel.js 328 var sourceFrame;
336 sourceFrame = this._sourceFrameForScriptOrResource(resource);
340 if (breakpoint.sourceID && !sourceFrame) {
342 sourceFrame = this._sourceFrameForScriptOrResource(object);
345 if (sourceFrame)
346 sourceFrame.addBreakpoint(breakpoint);
353 var sourceFrame;
362 sourceFrame = this._sourceFrameForScriptOrResource(resource);
366 if (breakpoint.sourceID && !sourceFrame) {
368 sourceFrame = this._sourceFrameForScriptOrResource(object)
    [all...]
ResourcesPanel.js 538 return view.sourceFrame;
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebFormDelegate.h 62 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
WebFormDelegate.m 73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
  /external/webkit/WebKit/win/Interfaces/
IWebFormDelegate.idl 95 //- (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener;
96 HRESULT willSubmitForm([in] IWebFrame* frame, [in] IWebFrame* sourceFrame, [in] IDOMElement* form, [in] IPropertyBag* values, [in] IWebFormSubmissionListener* listener);
  /external/webkit/WebKit/chromium/src/js/
Tests.js 804 if (!view.sourceFrame._loaded) {
1022 * @param {WebInspector.SourceFrame} sourceFrame
1026 TestSuite.prototype._checkExecutionLine = function(sourceFrame, lineNumber, lineContent)
    [all...]
DevTools.js 233 * WebInspector.documentKeyDown (e.g. SourceFrame).
282 this.sourceFrame.setContent("text/javascript", this.script.source);
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm     [all...]

Completed in 384 milliseconds