diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-20 12:23:02 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-20 12:23:02 +0000 |
commit | 38f161fe7abc8ed382b94f90de3aba61410240bd (patch) | |
tree | 686a586eb0f58523b01bf3d136c6fb8ee570130a /webkit | |
parent | 55722cdfad2dd83afdf4a338e8e38684bf54db31 (diff) | |
download | chromium_src-38f161fe7abc8ed382b94f90de3aba61410240bd.zip chromium_src-38f161fe7abc8ed382b94f90de3aba61410240bd.tar.gz chromium_src-38f161fe7abc8ed382b94f90de3aba61410240bd.tar.bz2 |
DevTools: Add delegate for method added upstream.
Review URL: http://codereview.chromium.org/173119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23811 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/devtools/js/inspector_controller_impl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/devtools/js/inspector_controller_impl.js b/webkit/glue/devtools/js/inspector_controller_impl.js index 8de209c..3b92a5c 100644 --- a/webkit/glue/devtools/js/inspector_controller_impl.js +++ b/webkit/glue/devtools/js/inspector_controller_impl.js @@ -34,9 +34,9 @@ devtools.InspectorControllerImpl = function() { this.installInjectedScriptDelegate_('getPrototypes'); this.installInjectedScriptDelegate_('getProperties'); this.installInjectedScriptDelegate_('setPropertyValue'); - this.installInjectedScriptDelegate_('evaluate'); this.installInjectedScriptDelegate_('addInspectedNode'); + this.installInjectedScriptDelegate_('pushNodeToFrontend'); this.installInjectedScriptDelegate_('performSearch'); this.installInjectedScriptDelegate_('searchCanceled'); }; |