diff options
author | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-20 17:10:15 +0000 |
---|---|---|
committer | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-20 17:10:15 +0000 |
commit | 0819da0910a053e5d87e835d1dd0bbb00ec26af0 (patch) | |
tree | bd4b1bda582e42f968fac6eabb436ee920c53388 /chrome | |
parent | bb569b43c5d259084ae246035777756293853311 (diff) | |
download | chromium_src-0819da0910a053e5d87e835d1dd0bbb00ec26af0.zip chromium_src-0819da0910a053e5d87e835d1dd0bbb00ec26af0.tar.gz chromium_src-0819da0910a053e5d87e835d1dd0bbb00ec26af0.tar.bz2 |
Explain that HistoryItem title is from the last load of the URL in question.
Remove long-outdated min_versions.
BUG=53280
TEST=Look at generated docs: http://www.corp.google.com/~skerner/crbug/53280/docs/history.html#event-onVisited
Review URL: http://codereview.chromium.org/7190006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89676 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
5 files changed, 9 insertions, 11 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 1613b90..6a468da 100644 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -1583,7 +1583,6 @@ "name": "setPopup", "type": "function", "description": "Sets the html document to be opened as a popup when the user clicks on the page action's icon.", - "min_version": "5.0.308.0", "parameters": [ { "name": "details", @@ -1673,7 +1672,6 @@ { "name": "setPopup", "type": "function", - "min_version": "5.0.316.0", "description": "Sets the html document to be opened as a popup when the user clicks on the browser action's icon.", "parameters": [ { @@ -2134,7 +2132,7 @@ "properties": { "id": {"type": "string", "minimum": 0, "description": "The unique identifier for the item."}, "url": {"type": "string", "optional": true, "description": "The URL navigated to by a user."}, - "title": {"type": "string", "optional": true, "description": "The title of the history page."}, + "title": {"type": "string", "optional": true, "description": "The title of the page when it was last loaded."}, "lastVisitTime": {"type": "number", "optional": true, "description": "When this page was last loaded, represented in milliseconds since the epoch."}, "visitCount": {"type": "integer", "optional": true, "description": "The number of times the user has navigated to this page."}, "typedCount": {"type": "integer", "optional": true, "description": "The number of times the user has navigated to this page by typing in the address."} @@ -2264,7 +2262,7 @@ { "name": "onVisited", "type": "function", - "description": "Fired when a URL is visited, providing the HistoryItem data for that URL.", + "description": "Fired when a URL is visited, providing the HistoryItem data for that URL. This event fires before the page has loaded.", "parameters": [ { "name": "result", "$ref": "HistoryItem"} ] diff --git a/chrome/common/extensions/docs/browserAction.html b/chrome/common/extensions/docs/browserAction.html index 4cddc79..3e9e80d 100644 --- a/chrome/common/extensions/docs/browserAction.html +++ b/chrome/common/extensions/docs/browserAction.html @@ -1681,8 +1681,8 @@ For other examples and for help in viewing the source code, see </div> <!-- MIN_VERSION --> - <p> - This function was added in version <b><span>5.0.316.0</span></b>. + <p style="display: none; "> + This function was added in version <b><span></span></b>. If you require this function, the manifest key <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> can ensure that your extension won't be run in an earlier browser version. diff --git a/chrome/common/extensions/docs/experimental.contentSettings.html b/chrome/common/extensions/docs/experimental.contentSettings.html index b9c1138..ce83132 100644 --- a/chrome/common/extensions/docs/experimental.contentSettings.html +++ b/chrome/common/extensions/docs/experimental.contentSettings.html @@ -2984,7 +2984,7 @@ <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>A list of resource identifiers for this content type, or <var>undefined</var> if this content type does not use resource identifiers</dd> + <dd>A list of resource identifiers for this content type, or <var>undefined</var> if this content type does not use resource identifiers.</dd> <dd style="display: none; "> This parameter was added in version <b><span></span></b>. diff --git a/chrome/common/extensions/docs/history.html b/chrome/common/extensions/docs/history.html index 2634288..c48a168 100644 --- a/chrome/common/extensions/docs/history.html +++ b/chrome/common/extensions/docs/history.html @@ -2557,7 +2557,7 @@ For other examples and for help in viewing the source code, see <div class="description"> <p class="todo" style="display: none; ">Undocumented.</p> - <p>Fired when a URL is visited, providing the HistoryItem data for that URL.</p> + <p>Fired when a URL is visited, providing the HistoryItem data for that URL. This event fires before the page has loaded.</p> <!-- LISTENER PARAMETERS --> <div> @@ -2883,7 +2883,7 @@ For other examples and for help in viewing the source code, see <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>The title of the history page.</dd> + <dd>The title of the page when it was last loaded.</dd> <dd style="display: none; "> This parameter was added in version <b><span></span></b>. diff --git a/chrome/common/extensions/docs/pageAction.html b/chrome/common/extensions/docs/pageAction.html index 075659e..f2df2ad 100644 --- a/chrome/common/extensions/docs/pageAction.html +++ b/chrome/common/extensions/docs/pageAction.html @@ -1269,8 +1269,8 @@ For other examples and for help in viewing the source code, see </div> <!-- MIN_VERSION --> - <p> - This function was added in version <b><span>5.0.308.0</span></b>. + <p style="display: none; "> + This function was added in version <b><span></span></b>. If you require this function, the manifest key <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> can ensure that your extension won't be run in an earlier browser version. |