diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 19:41:26 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 19:41:26 +0000 |
commit | 0def78f8aed8b7eaa6008a0e6dc65101930db2db (patch) | |
tree | 44296f584e730e2a3c8c7fd5af2c2a14fd2e4162 | |
parent | f33a296f5cc94a65d6f6f37f74a2da1a3bcae4f3 (diff) | |
download | chromium_src-0def78f8aed8b7eaa6008a0e6dc65101930db2db.zip chromium_src-0def78f8aed8b7eaa6008a0e6dc65101930db2db.tar.gz chromium_src-0def78f8aed8b7eaa6008a0e6dc65101930db2db.tar.bz2 |
Renames addItemToTimeline to addRecordToTimeline due to WebKit
change: https://bugs.webkit.org/show_bug.cgi?id=30785
Patch by: Kelly Norton (knorton@google.com)
TEST=create extension, register for events, verify that they fire
BUG=none
Review URL: http://codereview.chromium.org/339016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30236 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/glue/devtools/js/inject_dispatch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/devtools/js/inject_dispatch.js b/webkit/glue/devtools/js/inject_dispatch.js index 96c3fac..a6127580 100644 --- a/webkit/glue/devtools/js/inject_dispatch.js +++ b/webkit/glue/devtools/js/inject_dispatch.js @@ -33,7 +33,7 @@ var ApuAgentDispatcher = { enabled : false }; * @param {string} method name of the dispatch method. **/ ApuAgentDispatcher.dispatchToApu = function(method, args) { - if (method != 'addItemToTimeline' && + if (method != 'addRecordToTimeline' && method != 'updateResource' && method != 'addResource') { return; |