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

Unified Diff: webkit/appcache/appcache_disk_cache.h

Issue 10829258: Clean-up inline members of nested classes (webkit/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/appcache/appcache_disk_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_disk_cache.h
diff --git a/webkit/appcache/appcache_disk_cache.h b/webkit/appcache/appcache_disk_cache.h
index b361793fc37cbdbc7a61f697db62714d691f297f..27e8905454d6332bd94c03a9a5ae38fafc7986b2 100644
--- a/webkit/appcache/appcache_disk_cache.h
+++ b/webkit/appcache/appcache_disk_cache.h
@@ -64,19 +64,10 @@ class APPCACHE_EXPORT AppCacheDiskCache
Entry** entry;
net::CompletionCallback callback;
- PendingCall()
- : call_type(CREATE),
- key(0),
- entry(NULL) {
- }
+ PendingCall();
PendingCall(PendingCallType call_type, int64 key,
- Entry** entry, const net::CompletionCallback& callback)
- : call_type(call_type),
- key(key),
- entry(entry),
- callback(callback) {
- }
+ Entry** entry, const net::CompletionCallback& callback);
~PendingCall();
};
@@ -107,4 +98,3 @@ class APPCACHE_EXPORT AppCacheDiskCache
} // namespace appcache
#endif // WEBKIT_APPCACHE_APPCACHE_DISK_CACHE_H_
-
« no previous file with comments | « no previous file | webkit/appcache/appcache_disk_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698