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

Side by Side Diff: chrome/test/data/extensions/api_test/webnavigation/api/test.html

Issue 3061041: Add the definition of the webRequest and webNavigation APIs. (Closed)
Patch Set: updates Created 10 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <script>
2 chrome.experimental.webNavigation.onBeforeNavigate.addListener(
3 function(details) {});
4 chrome.experimental.webNavigation.onCommitted.addListener(
5 function(details) {});
6 chrome.experimental.webNavigation.onDOMContentLoaded.addListener(
7 function(details) {});
8 chrome.experimental.webNavigation.onCompleted.addListener(
9 function(details) {});
10 chrome.experimental.webNavigation.onErrorOccurred.addListener(
11 function(details) {});
12 chrome.experimental.webNavigation.onBeforeRetarget.addListener(
13 function(details) {});
14 chrome.test.notifyPass();
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698