Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: webkit/appcache/appcache_backend_impl.h

Issue 269062: AppCacheResponse storage implementation (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 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 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 WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 5 #ifndef WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_
6 #define WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 6 #define WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_
7 7
8 #include "base/logging.h"
9 #include "base/hash_tables.h" 8 #include "base/hash_tables.h"
10 #include "webkit/appcache/appcache_host.h" 9 #include "webkit/appcache/appcache_host.h"
11 10
12 namespace appcache { 11 namespace appcache {
13 12
14 class AppCacheService; 13 class AppCacheService;
15 14
16 class AppCacheBackendImpl { 15 class AppCacheBackendImpl {
17 public: 16 public:
18 AppCacheBackendImpl() : service_(NULL), frontend_(NULL), process_id_(0) {} 17 AppCacheBackendImpl() : service_(NULL), frontend_(NULL), process_id_(0) {}
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 private: 53 private:
55 AppCacheService* service_; 54 AppCacheService* service_;
56 AppCacheFrontend* frontend_; 55 AppCacheFrontend* frontend_;
57 int process_id_; 56 int process_id_;
58 HostMap hosts_; 57 HostMap hosts_;
59 }; 58 };
60 59
61 } // namespace 60 } // namespace
62 61
63 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 62 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698