Searched refs:sourceFrame (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10/WebKit2-7600.1.25/WebProcess/Storage/
H A DStorageAreaImpl.cpp77 void StorageAreaImpl::setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) argument
81 m_storageAreaMap->setItem(sourceFrame, this, key, value, quotaException);
84 void StorageAreaImpl::removeItem(Frame* sourceFrame, const String& key) argument
86 m_storageAreaMap->removeItem(sourceFrame, this, key);
89 void StorageAreaImpl::clear(Frame* sourceFrame) argument
91 m_storageAreaMap->clear(sourceFrame, this);
H A DStorageAreaImpl.h52 virtual void setItem(WebCore::Frame* sourceFrame, const String& key, const String& value, bool& quotaException) override;
53 virtual void removeItem(WebCore::Frame* sourceFrame, const String& key) override;
54 virtual void clear(WebCore::Frame* sourceFrame) override;
H A DStorageAreaMap.h57 void setItem(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key, const String& value, bool& quotaException);
58 void removeItem(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key);
59 void clear(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea);
H A DStorageAreaMap.cpp105 void StorageAreaMap::setItem(Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key, const String& value, bool& quotaException) argument
122 WebProcess::shared().parentProcessConnection()->send(Messages::StorageManager::SetItem(m_storageMapID, sourceArea->storageAreaID(), m_currentSeed, key, value, sourceFrame->document()->url()), 0);
125 void StorageAreaMap::removeItem(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key) argument
138 WebProcess::shared().parentProcessConnection()->send(Messages::StorageManager::RemoveItem(m_storageMapID, sourceArea->storageAreaID(), m_currentSeed, key, sourceFrame->document()->url()), 0);
141 void StorageAreaMap::clear(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea) argument
147 WebProcess::shared().parentProcessConnection()->send(Messages::StorageManager::Clear(m_storageMapID, sourceArea->storageAreaID(), m_currentSeed, sourceFrame->document()->url()), 0);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/
H A DAPIFormClient.h45 virtual bool willSubmitForm(WebKit::WebPageProxy*, WebKit::WebFrameProxy*, WebKit::WebFrameProxy* sourceFrame, const Vector<std::pair<WTF::String, WTF::String>>& textFieldValues, API::Object* userData, WebKit::WebFormSubmissionListenerProxy*) argument
47 UNUSED_PARAM(sourceFrame);
/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageAreaImpl.h50 virtual void setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) override;
51 virtual void removeItem(Frame* sourceFrame, const String& key) override;
52 virtual void clear(Frame* sourceFrame) override;
55 virtual bool canAccessStorage(Frame* sourceFrame) override;
82 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
H A DStorageEventDispatcher.cpp41 void StorageEventDispatcher::dispatchSessionStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
43 Page* page = sourceFrame->page();
51 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
55 dispatchSessionStorageEventsToFrames(*page, frames, key, oldValue, newValue, sourceFrame->document()->url(), securityOrigin);
58 void StorageEventDispatcher::dispatchLocalStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
60 Page* page = sourceFrame->page();
70 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
75 dispatchLocalStorageEventsToFrames(page->group(), frames, key, oldValue, newValue, sourceFrame->document()->url(), securityOrigin);
H A DStorageEventDispatcher.h45 static void dispatchSessionStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin*, Frame* sourceFrame);
46 static void dispatchLocalStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin*, Frame* sourceFrame);
H A DStorageArea.h48 virtual void setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) = 0;
49 virtual void removeItem(Frame* sourceFrame, const String& key) = 0;
50 virtual void clear(Frame* sourceFrame) = 0;
H A DStorageAreaImpl.cpp141 void StorageAreaImpl::setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) argument
161 dispatchStorageEvent(key, oldValue, value, sourceFrame);
164 void StorageAreaImpl::removeItem(Frame* sourceFrame, const String& key) argument
180 dispatchStorageEvent(key, oldValue, String(), sourceFrame);
183 void StorageAreaImpl::clear(Frame* sourceFrame) argument
197 dispatchStorageEvent(String(), String(), String(), sourceFrame); local
298 void StorageAreaImpl::dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame) argument
301 StorageEventDispatcher::dispatchLocalStorageEvents(key, oldValue, newValue, m_securityOrigin.get(), sourceFrame);
303 StorageEventDispatcher::dispatchSessionStorageEvents(key, oldValue, newValue, m_securityOrigin.get(), sourceFrame);
/macosx-10.10/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultFormDelegate.m72 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener
77 - (void)willSendSubmitEventToForm:(DOMHTMLFormElement *)element inFrame:(WebFrame *)sourceFrame withValues:(NSDictionary *)values
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebFormDelegate.h72 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
75 - (void)willSendSubmitEventToForm:(DOMHTMLFormElement *)element inFrame:(WebFrame *)sourceFrame withValues:(NSDictionary *)values;
H A DWebFormDelegate.m79 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
85 - (void)willSendSubmitEventToForm:(DOMHTMLFormElement *)element inFrame:(WebFrame *)sourceFrame withValues:(NSDictionary *)values
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebFormClient.cpp40 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String>>& textFieldValues, API::Object* userData, WebFormSubmissionListenerProxy* listener) argument
50 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.base.clientInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPageFormClient.h36 typedef void (*WKPageWillSubmitFormCallback)(WKPageRef page, WKFrameRef frame, WKFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef userData, WKFormSubmissionListenerRef listener, const void* clientInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKNavigationActionInternal.h38 @property (nonatomic, readwrite, copy) WKFrameInfo *sourceFrame; variable
H A DWKNavigationAction.h64 @property (nonatomic, readonly, copy) WKFrameInfo *sourceFrame; variable
H A DWKNavigationAction.mm126 return [NSString stringWithFormat:@"<%@: %p; navigationType = %ld; request = %@; sourceFrame = %@; targetFrame = %@>", NSStringFromClass(self.class), self,
130 - (WKFrameInfo *)sourceFrame
135 - (void)setSourceFrame:(WKFrameInfo *)sourceFrame
137 _sourceFrame = adoptNS([sourceFrame copy]);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/Cocoa/
H A DWKWebProcessPlugInFormDelegatePrivate.h39 - (void)_webProcessPlugInBrowserContextController:(WKWebProcessPlugInBrowserContextController *)controller willSendSubmitEventToForm:(WKWebProcessPlugInNodeHandle *)form inFrame:(WKWebProcessPlugInFrame *)sourceFrame targetFrame:(WKWebProcessPlugInFrame *)targetFrame values:(NSDictionary *)values;
43 - (NSObject <NSSecureCoding> *)_webProcessPlugInBrowserContextController:(WKWebProcessPlugInBrowserContextController *)controller willSubmitForm:(WKWebProcessPlugInNodeHandle *)form toFrame:(WKWebProcessPlugInFrame *)frame fromFrame:(WKWebProcessPlugInFrame *)sourceFrame withValues:(NSDictionary *)values;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundlePageFormClient.h52 virtual void willSubmitForm(WebPage*, WebCore::HTMLFormElement*, WebFrame*, WebFrame* sourceFrame, const Vector<std::pair<String, String>>&, RefPtr<API::Object>& userData) override;
53 virtual void willSendSubmitEvent(WebPage*, WebCore::HTMLFormElement*, WebFrame*, WebFrame* sourceFrame, const Vector<std::pair<String, String>>&) override;
H A DInjectedBundlePageFormClient.cpp127 void InjectedBundlePageFormClient::willSendSubmitEvent(WebPage* page, HTMLFormElement* formElement, WebFrame* frame, WebFrame* sourceFrame, const Vector<std::pair<String, String>>& values) argument
139 m_client.willSendSubmitEvent(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), m_client.base.clientInfo);
142 void InjectedBundlePageFormClient::willSubmitForm(WebPage* page, HTMLFormElement* formElement, WebFrame* frame, WebFrame* sourceFrame, const Vector<std::pair<String, String>>& values, RefPtr<API::Object>& userData) argument
155 m_client.willSubmitForm(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), &userDataToPass, m_client.base.clientInfo);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DVideoSinkGStreamer.cpp171 GstVideoFrame sourceFrame; local
174 if (!gst_video_frame_map(&sourceFrame, &priv->info, buffer, GST_MAP_READ)) {
180 gst_video_frame_unmap(&sourceFrame);
186 const guint8* source = static_cast<guint8*>(GST_VIDEO_FRAME_PLANE_DATA(&sourceFrame, 0));
189 for (int x = 0; x < GST_VIDEO_FRAME_HEIGHT(&sourceFrame); x++) {
190 for (int y = 0; y < GST_VIDEO_FRAME_WIDTH(&sourceFrame); y++) {
209 gst_video_frame_unmap(&sourceFrame);
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebFormDelegate.idl95 //- (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);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageFormClient.h37 typedef void (*WKBundlePageWillSubmitFormCallback)(WKBundlePageRef page, WKBundleNodeHandleRef htmlFormElementHandle, WKBundleFrameRef frame, WKBundleFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef* userData, const void* clientInfo);
38 typedef void (*WKBundlePageWillSendSubmitEventCallback)(WKBundlePageRef page, WKBundleNodeHandleRef htmlFormElementHandle, WKBundleFrameRef frame, WKBundleFrameRef sourceFrame, WKDictionaryRef values, const void* clientInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DNavigationState.h91 virtual void decidePolicyForNavigationAction(WebPageProxy*, WebFrameProxy* destinationFrame, const NavigationActionData&, WebFrameProxy* sourceFrame, const WebCore::ResourceRequest& originalRequest, const WebCore::ResourceRequest&, RefPtr<WebFramePolicyListenerProxy>, API::Object* userData) override;
92 virtual void decidePolicyForNewWindowAction(WebPageProxy*, WebFrameProxy* sourceFrame, const NavigationActionData&, const WebCore::ResourceRequest&, const WTF::String& frameName, RefPtr<WebFramePolicyListenerProxy>, API::Object* userData) override;

Completed in 234 milliseconds

12