Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: chrome/common/extensions/docs/templates/intros/webNavigation.html

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/intros/webNavigation.html
diff --git a/chrome/common/extensions/docs/templates/intros/webNavigation.html b/chrome/common/extensions/docs/templates/intros/webNavigation.html
index 3f7d712ab722b89686dd6c3857cc75b55ba5047c..3552b768304378cc837b6cf78677869acbd3a8ee 100644
--- a/chrome/common/extensions/docs/templates/intros/webNavigation.html
+++ b/chrome/common/extensions/docs/templates/intros/webNavigation.html
@@ -1,7 +1,7 @@
<h2 id="manifest">Manifest</h2>
<p>
All <code>chrome.webNavigation</code> methods and events require you to declare
-the "webNavigation" permission in the <a href="manifest.html">extension
+the "webNavigation" permission in the <a href="manifest">extension
manifest</a>.
For example:
</p>
@@ -25,7 +25,7 @@ You can find simple examples of using the tabs module in the
<a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/webNavigation/">examples/api/webNavigation</a>
directory.
For other examples and for help in viewing the source code, see
-<a href="samples.html">Samples</a>.
+<a href="samples">Samples</a>.
</p>
<h2 id="event_order">Event order</h2>
@@ -70,7 +70,7 @@ case, an <code>onTabReplaced</code> event is fired.
<h2 id="relation_to_webRequest">Relation to webRequest events</h2>
<p>
There is no defined ordering between events of the <a
-href="webRequest.html">webRequest API</a> and the events of the
+href="webRequest">webRequest API</a> and the events of the
webNavigation API. It is possible that webRequest events are still received for
frames that already started a new navigation, or that a navigation only
proceeds after the network resources are already fully loaded.
@@ -85,7 +85,7 @@ the state of the network stack which is generally opaque to the user.
<p>
Not all navigating tabs correspond to actual tabs in Chrome's UI, e.g., a tab
that is being pre-rendered. Such tabs are not accessible via the
-<a href="tabs.html">tabs API</a> nor can you request information about them via
+<a href="tabs">tabs API</a> nor can you request information about them via
<code>webNavigation.getFrame</code> or <code>webNavigation.getAllFrames</code>.
Once such a tab is swapped in, an <code>onTabReplaced</code> event is fired and
they become accessible via these APIs.
@@ -126,7 +126,7 @@ case, you will receive repeated <code>onBeforeNavigate</code> and
The webNavigation API's <code>onCommitted</code> event has a
<code>transitionType</code> and a <code>transitionQualifiers</code> property.
The <em>transition type</em> is the same as used in the <a
-href="history.html#transition_types">history API</a> describing how the browser
+href="history#transition_types">history API</a> describing how the browser
navigated to this particular URL. In addition, several <em>transition
qualifiers</em> can be returned that further define the navigation.
</p>

Powered by Google App Engine
This is Rietveld 408576698