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

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

Issue 11230022: webkit: Merge build target 'appcache' to 'webkit_storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: _ Created 8 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
« no previous file with comments | « webkit/appcache/appcache.h ('k') | webkit/appcache/appcache_database.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/hash_tables.h" 8 #include "base/hash_tables.h"
9 #include "webkit/appcache/appcache_export.h"
10 #include "webkit/appcache/appcache_host.h" 9 #include "webkit/appcache/appcache_host.h"
10 #include "webkit/storage/webkit_storage_export.h"
11 11
12 namespace appcache { 12 namespace appcache {
13 13
14 class AppCacheService; 14 class AppCacheService;
15 15
16 class APPCACHE_EXPORT AppCacheBackendImpl { 16 class WEBKIT_STORAGE_EXPORT AppCacheBackendImpl {
17 public: 17 public:
18 AppCacheBackendImpl(); 18 AppCacheBackendImpl();
19 ~AppCacheBackendImpl(); 19 ~AppCacheBackendImpl();
20 20
21 void Initialize(AppCacheService* service, 21 void Initialize(AppCacheService* service,
22 AppCacheFrontend* frontend, 22 AppCacheFrontend* frontend,
23 int process_id); 23 int process_id);
24 24
25 int process_id() const { return process_id_; } 25 int process_id() const { return process_id_; }
26 26
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 private: 60 private:
61 AppCacheService* service_; 61 AppCacheService* service_;
62 AppCacheFrontend* frontend_; 62 AppCacheFrontend* frontend_;
63 int process_id_; 63 int process_id_;
64 HostMap hosts_; 64 HostMap hosts_;
65 }; 65 };
66 66
67 } // namespace 67 } // namespace
68 68
69 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 69 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/appcache/appcache.h ('k') | webkit/appcache/appcache_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698