diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 23:49:30 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 23:49:30 +0000 |
commit | 205e75d4ebd6fe489ec7bde3b70abd654237074d (patch) | |
tree | 1e2e6d31e26923ec5ba8309dd48336b200b798d9 /net | |
parent | ae0230aeb2e047b4b05146b0e815f047fa0e9f5d (diff) | |
download | chromium_src-205e75d4ebd6fe489ec7bde3b70abd654237074d.zip chromium_src-205e75d4ebd6fe489ec7bde3b70abd654237074d.tar.gz chromium_src-205e75d4ebd6fe489ec7bde3b70abd654237074d.tar.bz2 |
AppCacheExecutableHandlers groundwork.
- define interfaces for their construction and invocation
- utilize that interface in AppCacheUrlRequestJob
There is no impl of the handler class or its factory yet, just some groundwork.
BUG=101800
R=alecflett@chromium.org, rvargas@chromium.org
Review URL: https://codereview.chromium.org/14557006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206520 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/net_log_event_type_list.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h index 86863f7..1fea29f 100644 --- a/net/base/net_log_event_type_list.h +++ b/net/base/net_log_event_type_list.h @@ -1459,6 +1459,10 @@ EVENT_TYPE(APPCACHE_DELIVERING_FALLBACK_RESPONSE) // This event is emitted whenever the appcache generates an error response. EVENT_TYPE(APPCACHE_DELIVERING_ERROR_RESPONSE) +// This event is emitted whenever the appcache executes script to compute +// a response. +EVENT_TYPE(APPCACHE_DELIVERING_EXECUTABLE_RESPONSE) + // ------------------------------------------------------------------------ // Global events // ------------------------------------------------------------------------ |