~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/inspector/front-end/PropertiesSidebarPane.js

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
            // Get array of prototype user-friendly names.
52
52
            for (var i = 0; i < prototypes.length; ++i) {
53
 
                var prototype = new WebInspector.ObjectProxy(node.id, [], i);
 
53
                var prototype = new WebInspector.ObjectProxy(node.injectedScriptId, node.id, [], i);
54
54
                var section = new WebInspector.ObjectPropertiesSection(prototype, prototypes[i], WebInspector.UIString("Prototype"));
55
55
                self.sections.push(section);
56
56
                body.appendChild(section.element);
57
57
            }
58
58
        };
59
 
        InjectedScriptAccess.getPrototypes(node.id, callback);
 
59
        InjectedScriptAccess.get(node.injectedScriptId).getPrototypes(node.id, callback);
60
60
    }
61
61
}
62
62