OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_APP_CACHE_APP_CACHE_CONTEXT_IMPL_H_ |
| 6 #define CHROME_COMMON_APP_CACHE_APP_CACHE_CONTEXT_IMPL_H_ |
| 7 |
| 8 #include "base/id_map.h" |
| 9 #include "chrome/common/ipc_message.h" |
| 10 #include "webkit/glue/webappcachecontext.h" |
| 11 |
| 12 // A concrete implemenation of WebAppCacheContext for use in a child process. |
| 13 class AppCacheContextImpl : public WebAppCacheContext { |
| 14 public: |
| 15 // Returns the context having given id or NULL if there is no such context. |
| 16 static AppCacheContextImpl* FromContextId(int id); |
| 17 |
| 18 AppCacheContextImpl(IPC::Message::Sender* sender); |
| 19 virtual ~AppCacheContextImpl(); |
| 20 |
| 21 // WebAppCacheContext implementation |
| 22 virtual int context_id() { return context_id_; } |
| 23 virtual int64 app_cache_id() { return app_cache_id_; } |
| 24 virtual void Initialize(WebAppCacheContext::ContextType context_type, |
| 25 WebAppCacheContext* opt_parent); |
| 26 virtual void SelectAppCacheWithoutManifest( |
| 27 const GURL& document_url, |
| 28 int64 cache_document_was_loaded_from); |
| 29 virtual void SelectAppCacheWithManifest( |
| 30 const GURL& document_url, |
| 31 int64 cache_document_was_loaded_from, |
| 32 const GURL& manifest_url); |
| 33 |
| 34 // Called by AppCacheDispatcher when the browser has selected an appcache. |
| 35 void OnAppCacheSelected(int select_request_id, int64 app_cache_id); |
| 36 |
| 37 private: |
| 38 void UnInitializeContext(); |
| 39 |
| 40 int context_id_; |
| 41 int64 app_cache_id_; |
| 42 int pending_select_request_id_; |
| 43 IPC::Message::Sender* sender_; |
| 44 |
| 45 static IDMap<AppCacheContextImpl> all_contexts; |
| 46 }; |
| 47 |
| 48 #endif // CHROME_COMMON_APP_CACHE_APP_CACHE_CONTEXT_IMPL_H_ |
OLD | NEW |