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 { |