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

Unified Diff: chrome/browser/extensions/dom_actions.h

Issue 12491012: Improved extension activity logging for the chrome.webRequest API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Simplify code Created 7 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/browser/extensions/dom_actions.h
diff --git a/chrome/browser/extensions/dom_actions.h b/chrome/browser/extensions/dom_actions.h
index a4a238beca317235b90ba443661b6c3fdde63bd3..13d5e0796c09057e975616299b945ef61e7b2018 100644
--- a/chrome/browser/extensions/dom_actions.h
+++ b/chrome/browser/extensions/dom_actions.h
@@ -16,10 +16,11 @@ namespace extensions {
class DOMAction : public Action {
public:
enum DOMActionType {
- MODIFIED, // For Content Script DOM manipulations
- READ, // For Content Script DOM manipulations
- INSERTED, // For when Content Scripts are added to pages
- XHR, // When an extension core sends an XHR
+ MODIFIED, // For Content Script DOM manipulations
+ READ, // For Content Script DOM manipulations
+ INSERTED, // For when Content Scripts are added to pages
+ XHR, // When an extension core sends an XHR
+ WEBREQUEST, // When a page request is modified with the WebRequest API
};
static const char* kTableName;

Powered by Google App Engine
This is Rietveld 408576698