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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ApplicationCacheModel.js 83 * @param {string} frameId
87 _manifestForFrameLoaded: function(frameId, error, manifestURL)
95 this._frameManifestRemoved(frameId);
110 this._frameManifestUpdated(framesWithManifests[i].frameId, framesWithManifests[i].manifestURL, framesWithManifests[i].status);
114 * @param {string} frameId
118 _frameManifestUpdated: function(frameId, manifestURL, status)
121 this._frameManifestRemoved(frameId);
128 if (this._manifestURLsByFrame[frameId] && manifestURL !== this._manifestURLsByFrame[frameId])
129 this._frameManifestRemoved(frameId);
    [all...]
CanvasProfileView.js 698 var frameId = this._selectedFrameId();
699 CanvasAgent.captureFrame(frameId, this._didStartCapturingFrame.bind(this, frameId));
704 var frameId = this._selectedFrameId();
705 CanvasAgent.startCapturing(frameId, this._didStartCapturingFrame.bind(this, frameId));
723 * @param {string|undefined} frameId
727 _didStartCapturingFrame: function(frameId, error, traceLogId)
731 var profileHeader = new WebInspector.CanvasProfileHeader(this, WebInspector.UIString("Trace Log %d", this._nextProfileUid), this._nextProfileUid, traceLogId, frameId);
804 for (var frameId in this._framesWithCanvases)
    [all...]
ResourceTreeModel.js 182 * @param {!PageAgent.FrameId} frameId
183 * @param {?PageAgent.FrameId} parentFrameId
186 _frameAttached: function(frameId, parentFrameId)
191 if (this._frames[frameId])
195 var frame = new WebInspector.ResourceTreeFrame(this, parentFrame, frameId);
245 * @param {!PageAgent.FrameId} frameId
247 _frameDetached: function(frameId)
253 var frame = this._frames[frameId];
    [all...]
Resource.js 36 * @param {!PageAgent.FrameId} frameId
42 WebInspector.Resource = function(request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
47 this._frameId = frameId;
102 * @return {!PageAgent.FrameId}
104 get frameId()
285 if (this.frameId)
286 PageAgent.searchInResource(this.frameId, this.url, query, caseSensitive, isRegex, callbackWrapper);
418 PageAgent.getResourceContent(this.frameId, this.url, resourceContentLoaded.bind(this));
NetworkManager.js 246 * @param {!PageAgent.FrameId} frameId
254 requestWillBeSent: function(requestId, frameId, loaderId, documentURL, request, time, initiator, redirectResponse)
261 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
264 networkRequest = this._createNetworkRequest(requestId, frameId, loaderId, request.url, documentURL, initiator);
286 * @param {!PageAgent.FrameId} frameId
292 responseReceived: function(requestId, frameId, loaderId, time, resourceType, response)
303 eventData.frameId = frameId;
    [all...]
ResourcesPanel.js 274 var frameId = resource.frameId;
279 var frameTreeElement = this._treeElementForFrameId[frameId];
296 var frameId = frame.id;
297 var frameTreeElement = this._treeElementForFrameId[frameId];
301 var applicationCacheFrameTreeElement = this._applicationCacheFrameElements[frameId];
554 showApplicationCache: function(frameId)
556 if (!this._applicationCacheViews[frameId])
557 this._applicationCacheViews[frameId] = new WebInspector.ApplicationCacheItemsView(this._applicationCacheModel, frameId);
    [all...]
StylesSourceMapping.js 93 var headersById = map.get(header.frameId);
96 map.put(header.frameId, headersById);
115 var headersById = map.get(header.frameId);
120 map.remove(header.frameId);
ApplicationCacheItemsView.js 30 WebInspector.ApplicationCacheItemsView = function(model, frameId)
57 this._frameId = frameId;
64 var status = this._model.frameManifestStatus(frameId);
CSSStyleModel.js 434 var styleSheetIds = frameIdToStyleSheetIds[styleSheetHeader.frameId];
437 frameIdToStyleSheetIds[styleSheetHeader.frameId] = styleSheetIds;
454 frameIdToStyleSheetIds[header.frameId].remove(id);
455 if (!frameIdToStyleSheetIds[header.frameId].length) {
456 delete frameIdToStyleSheetIds[header.frameId];
475 for (var frameId in frameIdToStyleSheetIds)
476 result = result.concat(frameIdToStyleSheetIds[frameId]);
482 * @return {!Object.<!PageAgent.FrameId, !Array.<!CSSAgent.StyleSheetId>>}
594 /** @type {!Object.<string, !Object.<!PageAgent.FrameId, !Array.<!CSSAgent.StyleSheetId>>>} */
636 for (var frameId in frameIdToSheetIds
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageRuntimeAgent.cpp 122 String frameId = m_pageAgent->frameId(frame);
124 notifyContextCreated(frameId, scriptState, 0, true);
132 String frameId = m_pageAgent->frameId(frame);
133 notifyContextCreated(frameId, scriptState, origin, false);
167 String frameId = m_pageAgent->frameId(frame);
170 notifyContextCreated(frameId, scriptState, 0, true);
175 notifyContextCreated(frameId, isolatedContexts[i].first, isolatedContexts[i].second, false)
    [all...]
InspectorCanvasAgent.cpp 54 using WebCore::TypeBuilder::Page::FrameId;
136 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
138 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
146 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
148 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
219 String frameId = m_pageAgent->frameId(frame)
    [all...]
InspectorApplicationCacheAgent.h 64 virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL);
65 virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&);
73 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
InspectorApplicationCacheAgent.cpp 90 m_frontend->applicationCacheStatusUpdated(m_pageAgent->frameId(frame), manifestURL, static_cast<int>(status));
113 .setFrameId(m_pageAgent->frameId(frame))
121 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
123 Frame* frame = m_pageAgent->assertFrame(errorString, frameId);
130 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL)
132 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
140 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache)
142 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
NetworkResourcesData.h 85 String frameId() const { return m_frameId; }
86 void setFrameId(const String& frameId) { m_frameId = frameId; }
152 void responseReceived(const String& requestId, const String& frameId, const ResourceResponse&);
PageRuntimeAgent.h 68 void notifyContextCreated(const String& frameId, ScriptState*, SecurityOrigin*, bool isPageContext);
InspectorPageAgent.h 101 virtual void getResourceContent(ErrorString*, const String& frameId, const String& url, String* content, bool* base64Encoded);
102 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> >&);
103 virtual void setDocumentContent(ErrorString*, const String& frameId, const String& html);
168 Frame* frameForId(const String& frameId);
169 String frameId(Frame*);
173 Frame* assertFrame(ErrorString*, const String& frameId);
InspectorPageAgent.cpp 575 void InspectorPageAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, String* content, bool* base64Encoded)
577 Frame* frame = assertFrame(errorString, frameId);
596 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)
603 Frame* frame = frameForId(frameId);
623 void InspectorPageAgent::setDocumentContent(ErrorString* errorString, const String& frameId, const String& html)
625 Frame* frame = assertFrame(errorString, frameId);
    [all...]
InspectorController.h 115 void didBeginFrame(int frameId);
InspectorResourceAgent.cpp 315 String frameId = m_pageAgent->frameId(loader->frame());
319 FrameNavigationInitiatorMap::iterator it = m_frameNavigationInitiatorMap.find(frameId);
324 m_frontend->requestWillBeSent(requestId, frameId, m_pageAgent->loaderId(loader), urlWithoutFragment(loader->url()).string(), buildObjectForResourceRequest(request), currentTime(), initiatorObject, buildObjectForResourceResponse(redirectResponse, loader));
363 m_resourcesData->responseReceived(requestId, m_pageAgent->frameId(loader->frame()), response);
365 m_frontend->responseReceived(requestId, m_pageAgent->frameId(loader->frame()), m_pageAgent->loaderId(loader), currentTime(), InspectorPageAgent::resourceTypeJson(type), resourceResponse);
695 void InspectorResourceAgent::loadResourceForFrontend(ErrorString* errorString, const String& frameId, const String& url, const RefPtr<JSONObject>* requestHeaders, PassRefPtr<LoadResourceForFrontendCallback> prpCallback)
698 Frame* frame = m_pageAgent->assertFrame(errorString, frameId);
754 m_frameNavigationInitiatorMap.set(m_pageAgent->frameId(frame), initiator);
759 m_frameNavigationInitiatorMap.remove(m_pageAgent->frameId(frame))
    [all...]
TimelineRecordFactory.h 99 static PassRefPtr<JSONObject> createFrameData(int frameId);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
WebContentsObserverAndroid.java 85 * @param frameId A positive, non-zero integer identifying the navigating frame.
95 long frameId,
106 * @param frameId A positive, non-zero integer identifying the navigating frame.
114 long frameId, boolean isMainFrame, String url, int transitionType) {
120 * @param frameId A positive, non-zero integer identifying the navigating frame.
125 public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) {
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsAgent.h 72 virtual void didBeginFrame(int frameId = 0) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.h 87 virtual void didBeginFrame(int frameId);
  /dalvik/vm/
Debugger.h 243 bool dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId,
253 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId);
254 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot,
256 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot,
  /external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/
navigation_collector.js 118 * openedInNewTab: boolean, source: {frameId: ?number, tabId: ?number},
129 * @param {!{tabId: ?number, frameId: ?number}} data Information
137 return data.tabId + '-' + (data.frameId ? data.frameId : 0);
153 frameId: null,
222 frameId: data.sourceFrameId
286 frameId: null,
321 frameId: null,

Completed in 1360 milliseconds

1 2 3