Chromium Code Reviews

Issue 205017: Check for supported schemes and methods. (Closed)

Created:
11 years, 3 months ago by michaeln
Modified:
9 years, 7 months ago
Reviewers:
jennb
CC:
chromium-reviews_googlegroups.com, darin (slow to review), dumi, jorlow1
Visibility:
Public.

Description

Check for supported schemes and examine request methods at key points. We support http, https, and file (dbg only) URLs for now. * Added IsSchemeSupported, IsMethodSupported and IsMethodAndSchemeSupported helpers, and string constants. * Check for supported schemes and methods during cache selection and during request interception. Must be GET for cache selectino, GET or HEAD for request interception. * Renamed some data members in WebApplicationCacheHostImpl to more closely match naming elsewhere. * Added AppCacheHost::Observer to make life easier. (I like the observer model, and even noticed that the chrome code base has a multi-threaded version too (ala Gears)... nice :) * Switched to using the observer model in AppCacheRequestDispatcher instead of a WeakPtr. One of the observable methods is OnDestructionImminent(host). * Added gyp dependency on the net library BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=26537

Patch Set 1 #

Total comments: 7

Patch Set 2 : '' #

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Patch Set 6 : '' #

Unified diffs Side-by-side diffs Stats (+158 lines, -56 lines)
M webkit/appcache/appcache_host.h View 3 chunks +21 lines, -0 lines 0 comments
M webkit/appcache/appcache_host.cc View 5 chunks +20 lines, -5 lines 0 comments
M webkit/appcache/appcache_interfaces.h View 2 chunks +15 lines, -0 lines 0 comments
M webkit/appcache/appcache_interfaces.cc View 1 chunk +25 lines, -1 line 0 comments
webkit/appcache/appcache_request_handler.h View 2 chunks +10 lines, -8 lines 0 comments
M webkit/appcache/appcache_request_handler.cc View 4 chunks +24 lines, -13 lines 0 comments
M webkit/appcache/web_application_cache_host_impl.h View 2 chunks +6 lines, -5 lines 0 comments
M webkit/appcache/web_application_cache_host_impl.cc View 5 chunks +36 lines, -23 lines 0 comments
M webkit/webkit.gyp View 1 chunk +1 line, -1 line 0 comments

Messages

Total messages: 6 (0 generated)
michaeln
11 years, 3 months ago (2009-09-16 04:57:48 UTC) #1
michaeln
http://codereview.chromium.org/205017/diff/1/9 File webkit/appcache/appcache_host.cc (right): http://codereview.chromium.org/205017/diff/1/9#newcode178 Line 178: if (associated_cache() || is_selection_pending()) note to self: if ...
11 years, 3 months ago (2009-09-16 07:28:09 UTC) #2
michaeln
I have to look into that try failure. While i'm at it, i'll look into ...
11 years, 3 months ago (2009-09-16 17:25:57 UTC) #3
michaeln
http://codereview.chromium.org/205017/diff/1/2 File webkit/appcache/web_application_cache_host_impl.cc (right): http://codereview.chromium.org/205017/diff/1/2#newcode69 Line 69: std::string method = request.httpMethod().utf8(); DCHECK(IsAllUpperCase(method)); is_get_method_ = (method ...
11 years, 3 months ago (2009-09-16 17:41:13 UTC) #4
jennb
http://codereview.chromium.org/205017/diff/1/5 File webkit/appcache/appcache_interfaces.cc (right): http://codereview.chromium.org/205017/diff/1/5#newcode22 Line 22: url.SchemeIsFile(); should this be 4 space indent? not ...
11 years, 3 months ago (2009-09-16 22:04:05 UTC) #5
jennb
11 years, 3 months ago (2009-09-17 00:38:37 UTC) #6
LGTM

Pending trybot failure resolution and other minor issues, FILE behind debug-only
code. Don't enable flag in this CL.

Powered by Google App Engine