| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ | 5 #ifndef CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ |
| 6 #define CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ | 6 #define CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 10 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 11 #include "third_party/WebKit/public/platform/WebVector.h" | 11 #include "third_party/WebKit/public/platform/WebVector.h" |
| 12 #include "third_party/WebKit/public/web/WebApplicationCacheHostClient.h" | 12 #include "third_party/WebKit/public/web/WebApplicationCacheHostClient.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 #include "webkit/common/appcache/appcache_interfaces.h" | 14 #include "webkit/common/appcache/appcache_interfaces.h" |
| 15 | 15 |
| 16 namespace WebKit { | 16 namespace blink { |
| 17 class WebFrame; | 17 class WebFrame; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 class WebApplicationCacheHostImpl | 22 class WebApplicationCacheHostImpl |
| 23 : NON_EXPORTED_BASE(public WebKit::WebApplicationCacheHost) { | 23 : NON_EXPORTED_BASE(public blink::WebApplicationCacheHost) { |
| 24 public: | 24 public: |
| 25 // Returns the host having given id or NULL if there is no such host. | 25 // Returns the host having given id or NULL if there is no such host. |
| 26 static WebApplicationCacheHostImpl* FromId(int id); | 26 static WebApplicationCacheHostImpl* FromId(int id); |
| 27 | 27 |
| 28 // Returns the host associated with the current document in frame. | 28 // Returns the host associated with the current document in frame. |
| 29 static WebApplicationCacheHostImpl* FromFrame(const WebKit::WebFrame* frame); | 29 static WebApplicationCacheHostImpl* FromFrame(const blink::WebFrame* frame); |
| 30 | 30 |
| 31 WebApplicationCacheHostImpl(WebKit::WebApplicationCacheHostClient* client, | 31 WebApplicationCacheHostImpl(blink::WebApplicationCacheHostClient* client, |
| 32 appcache::AppCacheBackend* backend); | 32 appcache::AppCacheBackend* backend); |
| 33 virtual ~WebApplicationCacheHostImpl(); | 33 virtual ~WebApplicationCacheHostImpl(); |
| 34 | 34 |
| 35 int host_id() const { return host_id_; } | 35 int host_id() const { return host_id_; } |
| 36 appcache::AppCacheBackend* backend() const { return backend_; } | 36 appcache::AppCacheBackend* backend() const { return backend_; } |
| 37 WebKit::WebApplicationCacheHostClient* client() const { return client_; } | 37 blink::WebApplicationCacheHostClient* client() const { return client_; } |
| 38 | 38 |
| 39 virtual void OnCacheSelected(const appcache::AppCacheInfo& info); | 39 virtual void OnCacheSelected(const appcache::AppCacheInfo& info); |
| 40 void OnStatusChanged(appcache::Status); | 40 void OnStatusChanged(appcache::Status); |
| 41 void OnEventRaised(appcache::EventID); | 41 void OnEventRaised(appcache::EventID); |
| 42 void OnProgressEventRaised(const GURL& url, int num_total, int num_complete); | 42 void OnProgressEventRaised(const GURL& url, int num_total, int num_complete); |
| 43 void OnErrorEventRaised(const std::string& message); | 43 void OnErrorEventRaised(const std::string& message); |
| 44 virtual void OnLogMessage(appcache::LogLevel log_level, | 44 virtual void OnLogMessage(appcache::LogLevel log_level, |
| 45 const std::string& message) {} | 45 const std::string& message) {} |
| 46 virtual void OnContentBlocked(const GURL& manifest_url) {} | 46 virtual void OnContentBlocked(const GURL& manifest_url) {} |
| 47 | 47 |
| 48 // WebKit::WebApplicationCacheHost: | 48 // blink::WebApplicationCacheHost: |
| 49 virtual void willStartMainResourceRequest(WebKit::WebURLRequest&, | 49 virtual void willStartMainResourceRequest(blink::WebURLRequest&, |
| 50 const WebKit::WebFrame*); | 50 const blink::WebFrame*); |
| 51 virtual void willStartSubResourceRequest(WebKit::WebURLRequest&); | 51 virtual void willStartSubResourceRequest(blink::WebURLRequest&); |
| 52 virtual void selectCacheWithoutManifest(); | 52 virtual void selectCacheWithoutManifest(); |
| 53 virtual bool selectCacheWithManifest(const WebKit::WebURL& manifestURL); | 53 virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL); |
| 54 virtual void didReceiveResponseForMainResource(const WebKit::WebURLResponse&); | 54 virtual void didReceiveResponseForMainResource(const blink::WebURLResponse&); |
| 55 virtual void didReceiveDataForMainResource(const char* data, int len); | 55 virtual void didReceiveDataForMainResource(const char* data, int len); |
| 56 virtual void didFinishLoadingMainResource(bool success); | 56 virtual void didFinishLoadingMainResource(bool success); |
| 57 virtual WebKit::WebApplicationCacheHost::Status status(); | 57 virtual blink::WebApplicationCacheHost::Status status(); |
| 58 virtual bool startUpdate(); | 58 virtual bool startUpdate(); |
| 59 virtual bool swapCache(); | 59 virtual bool swapCache(); |
| 60 virtual void getResourceList(WebKit::WebVector<ResourceInfo>* resources); | 60 virtual void getResourceList(blink::WebVector<ResourceInfo>* resources); |
| 61 virtual void getAssociatedCacheInfo(CacheInfo* info); | 61 virtual void getAssociatedCacheInfo(CacheInfo* info); |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 enum IsNewMasterEntry { | 64 enum IsNewMasterEntry { |
| 65 MAYBE, | 65 MAYBE, |
| 66 YES, | 66 YES, |
| 67 NO | 67 NO |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 WebKit::WebApplicationCacheHostClient* client_; | 70 blink::WebApplicationCacheHostClient* client_; |
| 71 appcache::AppCacheBackend* backend_; | 71 appcache::AppCacheBackend* backend_; |
| 72 int host_id_; | 72 int host_id_; |
| 73 appcache::Status status_; | 73 appcache::Status status_; |
| 74 WebKit::WebURLResponse document_response_; | 74 blink::WebURLResponse document_response_; |
| 75 GURL document_url_; | 75 GURL document_url_; |
| 76 bool is_scheme_supported_; | 76 bool is_scheme_supported_; |
| 77 bool is_get_method_; | 77 bool is_get_method_; |
| 78 IsNewMasterEntry is_new_master_entry_; | 78 IsNewMasterEntry is_new_master_entry_; |
| 79 appcache::AppCacheInfo cache_info_; | 79 appcache::AppCacheInfo cache_info_; |
| 80 GURL original_main_resource_url_; // Used to detect redirection. | 80 GURL original_main_resource_url_; // Used to detect redirection. |
| 81 bool was_select_cache_called_; | 81 bool was_select_cache_called_; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace content | 84 } // namespace content |
| 85 | 85 |
| 86 #endif // CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ | 86 #endif // CONTENT_CHILD_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ |
| OLD | NEW |