Searched defs:frameId (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
H A DNavigationTransitionDelegate.java39 * @param frameId A positive, non-zero integer identifying the navigating frame.
41 public void didStartNavigationTransitionForFrame(long frameId); argument
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwWebContentsObserver.java23 public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) { argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DPageRuntimeAgent.cpp108 String frameId = m_pageAgent->frameId(frame); local
109 addExecutionContextToFrontend(ScriptState::forMainWorld(frame), true, "", frameId); local
117 String frameId = m_pageAgent->frameId(frame); local
118 addExecutionContextToFrontend(scriptState, false, origin->toRawString(), frameId);
155 String frameId = m_pageAgent->frameId(localFrame); local
158 addExecutionContextToFrontend(scriptState, true, "", frameId);
163 addExecutionContextToFrontend(isolatedContexts[i].first, false, isolatedContexts[i].second->toRawString(), frameId);
[all...]
H A DInspectorApplicationCacheAgent.cpp90 m_frontend->applicationCacheStatusUpdated(m_pageAgent->frameId(frame), manifestURL, static_cast<int>(status));
115 .setFrameId(m_pageAgent->frameId(toLocalFrame(frame)))
123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId) argument
125 LocalFrame* frame = m_pageAgent->assertFrame(errorString, frameId);
132 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL) argument
134 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
142 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache) argument
144 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
H A DInspectorRuntimeAgent.cpp215 void InspectorRuntimeAgent::addExecutionContextToFrontend(ScriptState* scriptState, bool isPageContext, const String& origin, const String& frameId) argument
226 .setFrameId(frameId)
H A DNetworkResourcesData.cpp177 void NetworkResourcesData::responseReceived(const String& requestId, const String& frameId, const ResourceResponse& response) argument
182 resourceData->setFrameId(frameId);
H A DInspectorCanvasAgent.cpp142 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId) argument
144 LocalFrame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
152 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId) argument
154 LocalFrame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
225 String frameId = m_pageAgent->frameId(frame); local
226 if (!frameId.isEmpty())
227 m_frontend->contextCreated(frameId);
301 String frameId = m_pageAgent->frameId(it->key); local
332 String frameId = m_pageAgent->frameId(localFrame); local
[all...]
H A DNetworkResourcesData.h91 String frameId() const { return m_frameId; } function in class:blink::NetworkResourcesData::ResourceData
92 void setFrameId(const String& frameId) { m_frameId = frameId; } argument
158 void responseReceived(const String& requestId, const String& frameId, const ResourceResponse&);
H A DTimelineRecordFactory.cpp285 PassRefPtr<JSONObject> TimelineRecordFactory::createFrameData(int frameId) argument
288 data->setNumber("id", frameId);
H A DInspectorController.cpp476 void InspectorController::didBeginFrame(int frameId) argument
479 timelineAgent->didBeginFrame(frameId);
H A DInspectorResourceAgent.cpp341 String frameId = m_pageAgent->frameId(loader->frame()); local
345 FrameNavigationInitiatorMap::iterator it = m_frameNavigationInitiatorMap.find(frameId);
355 m_frontend->requestWillBeSent(requestId, frameId, m_pageAgent->loaderId(loader), urlWithoutFragment(loader->url()).string(), requestInfo.release(), currentTime(), initiatorObject, buildObjectForResourceResponse(redirectResponse, loader));
403 m_resourcesData->responseReceived(requestId, m_pageAgent->frameId(frame), response);
407 m_frontend->responseReceived(requestId, m_pageAgent->frameId(frame), m_pageAgent->loaderId(loader), currentTime(), InspectorPageAgent::resourceTypeJson(type), resourceResponse);
776 void InspectorResourceAgent::loadResourceForFrontend(ErrorString* errorString, const String& frameId, const String& url, const RefPtr<JSONObject>* requestHeaders, PassRefPtrWillBeRawPtr<LoadResourceForFrontendCallback> prpCallback) argument
779 LocalFrame* frame = m_pageAgent->assertFrame(errorString, frameId);
838 m_frameNavigationInitiatorMap.set(m_pageAgent->frameId(frame), initiator);
843 m_frameNavigationInitiatorMap.remove(m_pageAgent->frameId(fram
[all...]
H A DInspectorCSSAgent.cpp922 void InspectorCSSAgent::createStyleSheet(ErrorString* errorString, const String& frameId, TypeBuilder::CSS::StyleSheetId* outStyleSheetId) argument
924 LocalFrame* frame = m_pageAgent->frameForId(frameId);
H A DInspectorDOMAgent.cpp1342 const String& frameId,
1346 LocalFrame* frame = m_pageAgent->frameForId(frameId);
1610 value->setFrameId(m_pageAgent->frameId(frame));
1340 highlightFrame( ErrorString*, const String& frameId, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
H A DInspectorPageAgent.cpp150 GetResourceContentLoadListener(InspectorPageAgent*, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback>);
160 InspectorPageAgent::GetResourceContentLoadListener::GetResourceContentLoadListener(InspectorPageAgent* pageAgent, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback) argument
162 , m_frameId(frameId)
586 *outFrameId = frameId(frame);
726 void InspectorPageAgent::getResourceContentAfterResourcesContentLoaded(const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback) argument
729 LocalFrame* frame = assertFrame(&errorString, frameId);
744 void InspectorPageAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback) argument
755 m_inspectorResourceContentLoader->ensureResourcesContentLoaded(new GetResourceContentLoadListener(this, frameId, url, callback));
771 void InspectorPageAgent::searchInResource(ErrorString*, const String& frameId, const String& url, const String& query, const bool* const optionalCaseSensitive, const bool* const optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >& results) argument
775 LocalFrame* frame = frameForId(frameId);
795 setDocumentContent(ErrorString* errorString, const String& frameId, const String& html) argument
1048 frameForId(const String& frameId) argument
1053 String InspectorPageAgent::frameId(LocalFrame* frame) function in class:blink::InspectorPageAgent
1096 assertFrame(ErrorString* errorString, const String& frameId) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DRenderGeometryMapTest.cpp104 static const RenderLayerModelObject* getFrameRenderContainer(const char* frameId, WebView* webView, const WTF::AtomicString &elementId) argument
106 RenderBox* rb = getFrameElement(frameId, webView, elementId);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCanvasProfileView.js728 var frameId = this._selectedFrameId();
730 CanvasAgent.captureFrame(frameId, this._didStartCapturingFrame.bind(this, frameId));
736 var frameId = this._selectedFrameId();
738 CanvasAgent.startCapturing(frameId, this._didStartCapturingFrame.bind(this, frameId));
759 * @param {string|undefined} frameId
763 _didStartCapturingFrame: function(frameId, error, traceLogId)
767 var profileHeader = new WebInspector.CanvasProfileHeader(this._target, this, traceLogId, frameId);
834 for (var frameId i
912 var frameId = frame.id; variable
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DEmptyTabObserver.java64 public void onDidStartProvisionalLoadForFrame(Tab tab, long frameId, long parentFrameId, argument
H A DTabObserver.java139 * @param frameId A positive, non-zero integer identifying the navigating frame.
148 Tab tab, long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl,
147 onDidStartProvisionalLoadForFrame( Tab tab, long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl, boolean isErrorPage, boolean isIframeSrcdoc) argument
H A DTab.java286 public void didStartProvisionalLoadForFrame(long frameId, long parentFrameId, argument
290 observer.onDidStartProvisionalLoadForFrame(Tab.this, frameId, parentFrameId,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DWebContentsObserverAndroid.java103 * @param frameId A positive, non-zero integer identifying the navigating frame.
113 long frameId,
124 * @param frameId A positive, non-zero integer identifying the navigating frame.
132 long frameId, boolean isMainFrame, String url, int transitionType) {
138 * @param frameId A positive, non-zero integer identifying the navigating frame.
143 public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) { argument
148 * @param frameId A positive, non-zero integer identifying the navigating frame.
151 public void documentLoadedInFrame(long frameId) { argument
112 didStartProvisionalLoadForFrame( long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl, boolean isErrorPage, boolean isIframeSrcdoc) argument
131 didCommitProvisionalLoadForFrame( long frameId, boolean isMainFrame, String url, int transitionType) argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DTransitionTest.java69 public void didStartNavigationTransitionForFrame(long frameId) { argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/webcontents/
H A DWebContentsImpl.java213 private void didStartNavigationTransitionForFrame(long frameId) { argument
215 mNavigationTransitionDelegate.didStartNavigationTransitionForFrame(frameId);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineModelImpl.js338 bindings._lastScheduleStyleRecalculation[this.frameId()] = this;
342 this._initiator = bindings._lastScheduleStyleRecalculation[this.frameId()];
349 if (!bindings._layoutInvalidate[this.frameId()] && parentRecord.type() === recordTypes.RecalculateStyles)
351 bindings._layoutInvalidate[this.frameId()] = layoutInitator;
355 this._initiator = bindings._layoutInvalidate[this.frameId()];
356 bindings._layoutInvalidate[this.frameId()] = null;
465 frameId: function()
467 return this._record.frameId || "";
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageReader.h214 int frameId() const { return m_frameId; } function in struct:GIFFrameContext
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDevToolsAgentImpl.cpp272 void WebDevToolsAgentImpl::didBeginFrame(int frameId) argument
276 ic->didBeginFrame(frameId);

Completed in 356 milliseconds

12