HomeSort by relevance Sort by last modified time
    Searched refs:frameId (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ApplicationCacheModel.js 87 * @param {string} frameId
91 _manifestForFrameLoaded: function(frameId, error, manifestURL)
99 this._frameManifestRemoved(frameId);
114 this._frameManifestUpdated(framesWithManifests[i].frameId, framesWithManifests[i].manifestURL, framesWithManifests[i].status);
118 * @param {string} frameId
122 _frameManifestUpdated: function(frameId, manifestURL, status)
125 this._frameManifestRemoved(frameId);
132 if (this._manifestURLsByFrame[frameId] && manifestURL !== this._manifestURLsByFrame[frameId])
133 this._frameManifestRemoved(frameId);
    [all...]
ResourceTreeModel.js 206 * @param {!PageAgent.FrameId} frameId
207 * @param {?PageAgent.FrameId} parentFrameId
210 _frameAttached: function(frameId, parentFrameId)
215 if (this._frames[frameId])
219 var frame = new WebInspector.ResourceTreeFrame(this, parentFrame, frameId);
267 * @param {!PageAgent.FrameId} frameId
269 _frameDetached: function(frameId)
275 var frame = this._frames[frameId];
    [all...]
Resource.js 37 * @param {!PageAgent.FrameId} frameId
43 WebInspector.Resource = function(target, request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
49 this._frameId = frameId;
119 * @return {!PageAgent.FrameId}
121 get frameId()
291 if (this.frameId)
292 this.target().pageAgent().searchInResource(this.frameId, this.url, query, caseSensitive, isRegex, callbackWrapper);
387 this.target().pageAgent().getResourceContent(this.frameId, this.url, resourceContentLoaded.bind(this));
NetworkManager.js 260 * @param {!PageAgent.FrameId} frameId
268 requestWillBeSent: function(requestId, frameId, loaderId, documentURL, request, time, initiator, redirectResponse)
275 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
278 networkRequest = this._createNetworkRequest(requestId, frameId, loaderId, request.url, documentURL, initiator);
300 * @param {!PageAgent.FrameId} frameId
306 responseReceived: function(requestId, frameId, loaderId, time, resourceType, response)
313 eventData.frameId = frameId;
    [all...]
CSSStyleModel.js 50 /** @type {!StringMap.<!Object.<!PageAgent.FrameId, !Array.<!CSSAgent.StyleSheetId>>>} */
398 var frameId = node.frameId() || this.target().resourceTreeModel.mainFrame.id;
402 if (styleSheetHeader.frameId === frameId && styleSheetHeader.isViaInspector()) {
423 this._agent.createStyleSheet(frameId, innerCallback.bind(this));
488 var styleSheetIds = frameIdToStyleSheetIds[styleSheetHeader.frameId];
491 frameIdToStyleSheetIds[styleSheetHeader.frameId] = styleSheetIds;
508 var frameIdToStyleSheetIds = /** @type {!Object.<!PageAgent.FrameId, !Array.<!CSSAgent.StyleSheetId>>} */ (this._styleSheetIdsForURL.get(url));
509 console.assert(frameIdToStyleSheetIds, "No frameId to styleSheetId map is available for given style sheet URL.")
    [all...]
RuntimeModel.js 70 var executionContext = new WebInspector.ExecutionContext(this.target(), context.id, context.name, context.origin, context.isPageContext, context.frameId);
171 * @param {string=} frameId
173 WebInspector.ExecutionContext = function(target, id, name, origin, isPageContext, frameId)
181 this.frameId = frameId;
  /external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
NavigationTransitionDelegate.java 39 * @param frameId A positive, non-zero integer identifying the navigating frame.
41 public void didStartNavigationTransitionForFrame(long frameId);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
WebContentsObserverAndroid.java 103 * @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) {
148 * @param frameId A positive, non-zero integer identifying the navigating frame.
151 public void documentLoadedInFrame(long frameId) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageRuntimeAgent.cpp 108 String frameId = m_pageAgent->frameId(frame);
109 addExecutionContextToFrontend(ScriptState::forMainWorld(frame), true, "", frameId);
117 String frameId = m_pageAgent->frameId(frame);
118 addExecutionContextToFrontend(scriptState, false, origin->toRawString(), frameId);
155 String frameId = m_pageAgent->frameId(localFrame);
158 addExecutionContextToFrontend(scriptState, true, "", frameId);
163 addExecutionContextToFrontend(isolatedContexts[i].first, false, isolatedContexts[i].second->toRawString(), frameId);
    [all...]
InspectorCanvasAgent.cpp 53 using blink::TypeBuilder::Page::FrameId;
142 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
144 LocalFrame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
152 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
154 LocalFrame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
225 String frameId = m_pageAgent->frameId(frame)
    [all...]
InspectorApplicationCacheAgent.h 66 virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) OVERRIDE;
67 virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&) OVERRIDE;
75 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
InspectorApplicationCacheAgent.cpp 90 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)
125 LocalFrame* frame = m_pageAgent->assertFrame(errorString, frameId);
132 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL)
134 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
142 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache)
144 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
InspectorPageAgent.h 104 virtual void navigate(ErrorString*, const String& url, String* frameId) OVERRIDE;
108 virtual void getResourceContent(ErrorString*, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback>) OVERRIDE;
109 virtual void searchInResource(ErrorString*, const String& frameId, const String& url, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&) OVERRIDE;
110 virtual void setDocumentContent(ErrorString*, const String& frameId, const String& html) OVERRIDE;
161 LocalFrame* frameForId(const String& frameId);
162 String frameId(LocalFrame*);
166 LocalFrame* assertFrame(ErrorString*, const String& frameId);
190 void getResourceContentAfterResourcesContentLoaded(const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback>);
NetworkResourcesData.h 91 String frameId() const { return m_frameId; }
92 void setFrameId(const String& frameId) { m_frameId = frameId; }
158 void responseReceived(const String& requestId, const String& frameId, const ResourceResponse&);
InspectorPageAgent.cpp 150 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)
162 , m_frameId(frameId)
586 *outFrameId = frameId(frame);
726 void InspectorPageAgent::getResourceContentAfterResourcesContentLoaded(const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback)
729 LocalFrame* frame = assertFrame(&errorString, frameId);
744 void InspectorPageAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback)
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)
775 LocalFrame* frame = frameForId(frameId);
    [all...]
InspectorRuntimeAgent.h 97 void addExecutionContextToFrontend(ScriptState*, bool isPageContext, const String& origin, const String& frameId);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasProfileView.js 728 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 in this._framesWithCanvases)
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwWebContentsObserverTest.java 45 int frameId = 0;
50 mWebContentsObserver.didFinishLoad(frameId, EXAMPLE_URL, subFrame);
55 mWebContentsObserver.didFinishLoad(frameId, mUnreachableWebDataUrl, mainFrame);
60 mWebContentsObserver.didFinishLoad(frameId, EXAMPLE_URL, mainFrame);
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsAgent.h 65 virtual void didBeginFrame(int frameId = 0) = 0;
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwWebContentsObserver.java 23 public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
EmptyTabObserver.java 64 public void onDidStartProvisionalLoadForFrame(Tab tab, long frameId, long parentFrameId,
TabObserver.java 139 * @param frameId A positive, non-zero integer identifying the navigating frame.
148 Tab tab, long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
StylesSourceMapping.js 119 var headersById = map.get(header.frameId);
122 map.set(header.frameId, headersById);
141 var headersById = map.get(header.frameId);
146 map.remove(header.frameId);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ResourcesPanel.js 297 var frameId = resource.frameId;
302 var frameTreeElement = this._treeElementForFrameId[frameId];
319 var frameId = frame.id;
320 var frameTreeElement = this._treeElementForFrameId[frameId];
324 var applicationCacheFrameTreeElement = this._applicationCacheFrameElements[frameId];
580 showApplicationCache: function(frameId)
582 if (!this._applicationCacheViews[frameId])
583 this._applicationCacheViews[frameId] = new WebInspector.ApplicationCacheItemsView(this._applicationCacheModel, frameId);
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/webcontents/
WebContentsImpl.java 213 private void didStartNavigationTransitionForFrame(long frameId) {
215 mNavigationTransitionDelegate.didStartNavigationTransitionForFrame(frameId);

Completed in 1358 milliseconds

1 2 3