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

Unified Diff: chrome/common/extensions/api/web_navigation.json

Issue 10514013: Filtered events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, reland Created 8 years, 5 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/event_filtering_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/web_navigation.json
diff --git a/chrome/common/extensions/api/web_navigation.json b/chrome/common/extensions/api/web_navigation.json
index cbfc7204abfb35f6b66d9f4b0de070009e256b31..55342973f215121cd7e9ef8d5997bdc4114f852b 100644
--- a/chrome/common/extensions/api/web_navigation.json
+++ b/chrome/common/extensions/api/web_navigation.json
@@ -91,6 +91,11 @@
"name": "onBeforeNavigate",
"type": "function",
"description": "Fired when a navigation is about to occur.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -108,6 +113,11 @@
"name": "onCommitted",
"type": "function",
"description": "Fired when a navigation is committed. The document (and the resources it refers to, such as images and subframes) might still be downloading, but at least part of the document has been received from the server and the browser has decided to switch to the new document.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -127,6 +137,11 @@
"name": "onDOMContentLoaded",
"type": "function",
"description": "Fired when the page's DOM is fully constructed, but the referenced resources may not finish loading.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -144,6 +159,11 @@
"name": "onCompleted",
"type": "function",
"description": "Fired when a document, including the resources it refers to, is completely loaded and initialized.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -161,6 +181,11 @@
"name": "onErrorOccurred",
"type": "function",
"description": "Fired when an error occurs and the navigation is aborted. This can happen if either a network error occurred, or the user aborted the navigation.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -179,6 +204,11 @@
"name": "onCreatedNavigationTarget",
"type": "function",
"description": "Fired when a new window, or a new tab in an existing window, is created to host a navigation.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
@@ -197,6 +227,11 @@
"name": "onReferenceFragmentUpdated",
"type": "function",
"description": "Fired when the reference fragment of a frame was updated. All future events for that frame will use the updated URL.",
+ "options": {
+ "supportsFilters": true,
+ "supportsListeners": true,
+ "supportsRules": false
+ },
"parameters": [
{
"type": "object",
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/event_filtering_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698