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

Unified Diff: content/common/indexed_db/indexed_db_key_range.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 | « content/common/indexed_db/indexed_db_key_path.cc ('k') | content/common/indexed_db/indexed_db_key_range.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_key_range.h
diff --git a/content/common/indexed_db/indexed_db_key_range.h b/content/common/indexed_db/indexed_db_key_range.h
index e8d690cbb054909bb6a1802bcaa0cd5711cce782..7dce7c6dac3bc93f10cd042f32ea33f385b8c947 100644
--- a/content/common/indexed_db/indexed_db_key_range.h
+++ b/content/common/indexed_db/indexed_db_key_range.h
@@ -19,7 +19,9 @@ class CONTENT_EXPORT IndexedDBKeyRange {
const IndexedDBKey& upper,
bool lower_open,
bool upper_open);
+ IndexedDBKeyRange(const IndexedDBKeyRange& other);
~IndexedDBKeyRange();
+ IndexedDBKeyRange& operator=(const IndexedDBKeyRange& other);
const IndexedDBKey& lower() const { return lower_; }
const IndexedDBKey& upper() const { return upper_; }
« no previous file with comments | « content/common/indexed_db/indexed_db_key_path.cc ('k') | content/common/indexed_db/indexed_db_key_range.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698