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

Unified Diff: content/browser/indexed_db/indexed_db_backing_store.h

Issue 933823002: Avoid large inlined automatic methods in IndexedDB code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
Index: content/browser/indexed_db/indexed_db_backing_store.h
diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h
index 7c16b4e95a24cc6affcb1fc687dab52961bde25e..3ab84bc9c981c7f25575e8159af8f4114b5d711a 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_backing_store.h
@@ -177,6 +177,9 @@ class CONTENT_EXPORT IndexedDBBackingStore
int64_t key,
int64_t size,
base::Time last_modified);
+ WriteDescriptor(const WriteDescriptor& other);
+ ~WriteDescriptor();
+ WriteDescriptor& operator=(const WriteDescriptor& other);
cmumford 2015/02/17 16:34:50 operator= is never called, so you could suppress t
Daniel Bratell 2015/02/18 13:55:44 You might be right (I did notice that some of the
bool is_file() const { return is_file_; }
const GURL& url() const {

Powered by Google App Engine
This is Rietveld 408576698