diff options
author | mkearney@google.com <mkearney@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 10:56:18 +0000 |
---|---|---|
committer | mkearney@google.com <mkearney@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 10:56:18 +0000 |
commit | c44f5d14e59edc79e02e20e15ccb14588d1be22d (patch) | |
tree | 5abe5cc2b6af5221b47c5578636d3a9d323cadae /chrome/common/extensions/docs/static | |
parent | 1e2d0f18e3a2dc71e67eb0bdb7f19ff935abf542 (diff) | |
download | chromium_src-c44f5d14e59edc79e02e20e15ccb14588d1be22d.zip chromium_src-c44f5d14e59edc79e02e20e15ccb14588d1be22d.tar.gz chromium_src-c44f5d14e59edc79e02e20e15ccb14588d1be22d.tar.bz2 |
This includes some small changes to the API documentation
for experimental.devtools.network.
Review URL: http://codereview.chromium.org/8507032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109614 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/static')
-rw-r--r-- | chrome/common/extensions/docs/static/experimental.devtools.network.html | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/chrome/common/extensions/docs/static/experimental.devtools.network.html b/chrome/common/extensions/docs/static/experimental.devtools.network.html index f49f1b5..ca9a24e 100644 --- a/chrome/common/extensions/docs/static/experimental.devtools.network.html +++ b/chrome/common/extensions/docs/static/experimental.devtools.network.html @@ -3,13 +3,14 @@ API</div> <p id="classSummary"> Use the <code>chrome.experimental.devtools.network</code> module to retrieve -the information about network requests displayed by DevTools' Network panel. +the information about network requests displayed by the Developer Tools +in the Network panel. </p><p> See <a href="experimental.devtools.html">DevTools APIs summary</a> for general introduction to using Developer Tools APIs</a>. </p> -<h2>Notes</h2> +<h2>Overview</h2> <p> Network requests information is represented in the HTTP Archive format @@ -27,10 +28,12 @@ provides <em>HAR entry</em> as an argument to the event callback. <p>Note that request content is not provided as part of HAR for efficieny reasons. You may call request's <code>getContent()</code> method to retrieve content. -<p>Some requests may be missing in the array of entries returned by <code> -getHAR()</code> in case Developer Tools window was opened after the page was -loaded — reload the page to get all requests. In general, the list of -requests returned by <code>getHAR()</code> should match that displayed by +<p>If the Developer Tools window is opened after the page is loaded, +some requests may be missing +in the array of entries returned by <code>getHAR()</code>. +Reload the page to get all requests. +In general, the list of +requests returned by <code>getHAR()</code> should match that displayed in the Network panel. <h2 id="overview-examples">Examples</h2> |