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

Side by Side Diff: chrome/test/data/extensions/api_test/webrequest/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
« no previous file with comments | « chrome/test/data/extensions/api_test/webrequest/api/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script>
2 chrome.experimental.webRequest.onBeforeRequest.addListener(
3 function(details) {});
4 chrome.experimental.webRequest.onRequestSent.addListener(
5 function(details) {});
6 chrome.experimental.webRequest.onHeadersReceived.addListener(
7 function(details) {});
8 chrome.experimental.webRequest.onBeforeRedirect.addListener(
9 function(details) {});
10 chrome.experimental.webRequest.onCompleted.addListener(
11 function(details) {});
12 chrome.experimental.webRequest.onErrorOccurred.addListener(
13 function(details) {});
14 chrome.test.notifyPass();
15 </script>
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/webrequest/api/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698