Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js

Issue 2102453003: [DevTools] Move collectionEntries to internalProperties in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 WebInspector.SourceMapNamesResolver = {}; 5 WebInspector.SourceMapNamesResolver = {};
6 6
7 WebInspector.SourceMapNamesResolver._cachedMapSymbol = Symbol("cache"); 7 WebInspector.SourceMapNamesResolver._cachedMapSymbol = Symbol("cache");
8 WebInspector.SourceMapNamesResolver._cachedIdentifiersSymbol = Symbol("cachedIde ntifiers"); 8 WebInspector.SourceMapNamesResolver._cachedIdentifiersSymbol = Symbol("cachedIde ntifiers");
9 9
10 /** 10 /**
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 584
585 /** 585 /**
586 * @override 586 * @override
587 * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} cal lback 587 * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} cal lback
588 */ 588 */
589 generatorObjectDetails: function(callback) 589 generatorObjectDetails: function(callback)
590 { 590 {
591 this._object.generatorObjectDetails(callback); 591 this._object.generatorObjectDetails(callback);
592 }, 592 },
593 593
594 /**
595 * @override
596 * @param {function(?Array<!DebuggerAgent.CollectionEntry>)} callback
597 */
598 collectionEntries: function(callback)
599 {
600 this._object.collectionEntries(callback);
601 },
602
603 __proto__: WebInspector.RemoteObject.prototype 594 __proto__: WebInspector.RemoteObject.prototype
604 } 595 }
605 596
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698