blob: dbc00f157e5b5c24bcba83886422fb177e461a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
#define WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
#include "googleurl/src/gurl.h"
#include "webkit/api/public/WebApplicationCacheHostClient.h"
#include "webkit/api/public/WebURLResponse.h"
#include "webkit/appcache/appcache_interfaces.h"
namespace appcache {
class WebApplicationCacheHostImpl : public WebKit::WebApplicationCacheHost {
public:
// Returns the host having given id or NULL if there is no such host.
static WebApplicationCacheHostImpl* FromId(int id);
WebApplicationCacheHostImpl(WebKit::WebApplicationCacheHostClient* client,
AppCacheBackend* backend);
virtual ~WebApplicationCacheHostImpl();
int host_id() const { return host_id_; }
void OnCacheSelected(int64 selected_cache_id, appcache::Status status);
void OnStatusChanged(appcache::Status);
void OnEventRaised(appcache::EventID);
// WebApplicationCacheHost methods
virtual void willStartMainResourceRequest(WebKit::WebURLRequest&);
virtual void willStartSubResourceRequest(WebKit::WebURLRequest&);
virtual void selectCacheWithoutManifest();
virtual bool selectCacheWithManifest(const WebKit::WebURL& manifestURL);
virtual void didReceiveResponseForMainResource(const WebKit::WebURLResponse&);
virtual void didReceiveDataForMainResource(const char* data, int len);
virtual void didFinishLoadingMainResource(bool success);
virtual WebKit::WebApplicationCacheHost::Status status();
virtual bool startUpdate();
virtual bool swapCache();
private:
enum ShouldCaptureMainResponse {
MAYBE,
YES,
NO
};
WebKit::WebApplicationCacheHostClient* client_;
AppCacheBackend* backend_;
int host_id_;
bool has_status_;
appcache::Status status_;
bool has_cached_status_;
appcache::Status cached_status_;
WebKit::WebURLResponse main_response_;
GURL main_response_url_;
bool is_in_http_family_;
ShouldCaptureMainResponse should_capture_main_response_;
};
} // namespace
#endif // WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
|