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

1 2

  /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 667 var frameId = this._selectedFrameId();
668 CanvasAgent.captureFrame(frameId, this._didStartCapturingFrame.bind(this, frameId));
673 var frameId = this._selectedFrameId();
674 CanvasAgent.startCapturing(frameId, this._didStartCapturingFrame.bind(this, frameId));
692 * @param {string|undefined} frameId
696 _didStartCapturingFrame: function(frameId, error, traceLogId)
700 var profileHeader = new WebInspector.CanvasProfileHeader(this, WebInspector.UIString("Trace Log %d", this._nextProfileUid), this._nextProfileUid, traceLogId, frameId);
798 for (var frameId in this._framesWithCanvases)
    [all...]
ResourceTreeModel.js 225 * @param {NetworkAgent.FrameId} frameId
227 _frameDetached: function(frameId)
233 var frame = this._frames[frameId];
256 var frame = this._frames[request.frameId];
271 var frameId = event.data.frameId;
272 var frame = this._frames[frameId];
280 var resource = new WebInspector.Resource(null, url, frame.url, frameId, event.data.loaderId, WebInspector.resourceTypes[event.data.resourceType], event.data.mimeType);
285 * @param {NetworkAgent.FrameId} frameI
    [all...]
NetworkManager.js 257 * @param {NetworkAgent.FrameId} frameId
265 requestWillBeSent: function(requestId, frameId, loaderId, documentURL, request, time, initiator, redirectResponse)
272 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
275 networkRequest = this._createNetworkRequest(requestId, frameId, loaderId, request.url, documentURL, initiator);
297 * @param {NetworkAgent.FrameId} frameId
303 responseReceived: function(requestId, frameId, loaderId, time, resourceType, response)
314 eventData.frameId = frameId;
    [all...]
Resource.js 36 * @param {NetworkAgent.FrameId} frameId
42 WebInspector.Resource = function(request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
47 this._frameId = frameId;
102 * @return {NetworkAgent.FrameId}
104 get frameId()
287 if (this.frameId)
288 PageAgent.searchInResource(this.frameId, this.url, query, caseSensitive, isRegex, callbackWrapper);
413 PageAgent.getResourceContent(this.frameId, this.url, resourceContentLoaded.bind(this));
StylesSourceMapping.js 96 var headersById = map.get(header.frameId);
99 map.put(header.frameId, headersById);
118 var headersById = map.get(header.frameId);
123 map.remove(header.frameId);
ResourcesPanel.js 269 var frameId = resource.frameId;
274 var frameTreeElement = this._treeElementForFrameId[frameId];
291 var frameId = frame.id;
292 var frameTreeElement = this._treeElementForFrameId[frameId];
296 var applicationCacheFrameTreeElement = this._applicationCacheFrameElements[frameId];
548 showApplicationCache: function(frameId)
550 if (!this._applicationCacheViews[frameId])
551 this._applicationCacheViews[frameId] = new WebInspector.ApplicationCacheItemsView(this._applicationCacheModel, frameId);
    [all...]
ApplicationCacheItemsView.js 30 WebInspector.ApplicationCacheItemsView = function(model, frameId)
57 this._frameId = frameId;
64 var status = this._model.frameManifestStatus(frameId);
CSSStyleModel.js 416 var styleSheetIds = frameIdToStyleSheetIds[styleSheetHeader.frameId];
419 frameIdToStyleSheetIds[styleSheetHeader.frameId] = styleSheetIds;
435 frameIdToStyleSheetIds[header.frameId].remove(id);
436 if (!frameIdToStyleSheetIds[header.frameId].length) {
437 delete frameIdToStyleSheetIds[header.frameId];
455 for (var frameId in frameIdToStyleSheetIds)
456 result = result.concat(frameIdToStyleSheetIds[frameId]);
462 * @return {Object.<NetworkAgent.FrameId, Array.<CSSAgent.StyleSheetId>>}
570 /** @type {!Object.<string, !Object.<NetworkAgent.FrameId, !Array.<!CSSAgent.StyleSheetId>>>} */
614 for (var frameId in frameIdToSheetIds
    [all...]
InspectorFrontendAPI.js 49 showMainResourceForFrame: function(frameId)
  /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 56 using WebCore::TypeBuilder::Network::FrameId;
138 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
140 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
148 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId)
150 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
221 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 91 m_frontend->applicationCacheStatusUpdated(m_pageAgent->frameId(frame), manifestURL, static_cast<int>(status));
115 .setFrameId(m_pageAgent->frameId(frame))
123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
125 Frame* 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);
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 99 virtual void getResourceContent(ErrorString*, const String& frameId, const String& url, String* content, bool* base64Encoded);
100 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> >&);
102 virtual void setDocumentContent(ErrorString*, const String& frameId, const String& html);
165 Frame* frameForId(const String& frameId);
166 String frameId(Frame*);
170 Frame* assertFrame(ErrorString*, const String& frameId);
InspectorPageAgent.cpp 566 void InspectorPageAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, String* content, bool* base64Encoded)
568 Frame* frame = assertFrame(errorString, frameId);
587 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)
594 Frame* frame = frameForId(frameId);
614 static PassRefPtr<TypeBuilder::Page::SearchResult> buildObjectForSearchResult(const String& frameId, const String& url, int matchesCount)
618 .setFrameId(frameId)
639 searchResults->addItem(buildObjectForSearchResult(frameId(frame), urlWithoutFragment(cachedResource->url()).string(), matchesCount));
647 void InspectorPageAgent::setDocumentContent(ErrorString* errorString, const String& frameId, const String& html)
649 Frame* frame = assertFrame(errorString, frameId);
    [all...]
InspectorResourceAgent.h 146 virtual void loadResourceForFrontend(ErrorString*, const String& frameId, const String& url, const RefPtr<JSONObject>* requestHeaders, PassRefPtr<LoadResourceForFrontendCallback>);
NetworkResourcesData.cpp 173 void NetworkResourcesData::responseReceived(const String& requestId, const String& frameId, const ResourceResponse& response)
178 resourceData->setFrameId(frameId);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
WebContentsObserverAndroid.java 72 * @param frameId A positive, non-zero integer identifying the navigating frame.
82 long frameId,
93 * @param frameId A positive, non-zero integer identifying the navigating frame.
101 long frameId, boolean isMainFrame, String url, int transitionType) {
107 * @param frameId A positive, non-zero integer identifying the navigating frame.
112 public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) {
  /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,
  /dalvik/vm/jdwp/
JdwpHandler.cpp 311 expandBufAdd4BE(pReply, sizeof(FrameId));
    [all...]
  /frameworks/av/include/camera/
ProCamera.h 67 virtual void onResultReceived(int32_t frameId, camera_metadata* result) = 0;

Completed in 300 milliseconds

1 2