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

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: One more CONTENT_EXPORT 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
« no previous file with comments | « no previous file | content/browser/indexed_db/indexed_db_backing_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..d7e5dbc217c24db517ce7af8df78df7b27c6edc5 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_backing_store.h
@@ -167,7 +167,7 @@ class CONTENT_EXPORT IndexedDBBackingStore
typedef std::vector<std::pair<BlobEntryKey, std::string> >
BlobEntryKeyValuePairVec;
- class WriteDescriptor {
+ class CONTENT_EXPORT WriteDescriptor {
public:
WriteDescriptor(const GURL& url,
int64_t key,
@@ -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);
bool is_file() const { return is_file_; }
const GURL& url() const {
« no previous file with comments | « no previous file | content/browser/indexed_db/indexed_db_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698