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

Unified Diff: Source/modules/indexeddb/IDBKeyRange.h

Issue 1323323002: IndexedDB: Various C++11isms and cleanup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: True, false, whatever Created 5 years, 3 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: Source/modules/indexeddb/IDBKeyRange.h
diff --git a/Source/modules/indexeddb/IDBKeyRange.h b/Source/modules/indexeddb/IDBKeyRange.h
index 230dd049995dfeab53c6d36ec5f24206e349f12f..bc9403eda3ab83e2dd9cafe6f2aec7ff7efc6efd 100644
--- a/Source/modules/indexeddb/IDBKeyRange.h
+++ b/Source/modules/indexeddb/IDBKeyRange.h
@@ -79,8 +79,8 @@ private:
Member<IDBKey> m_lower;
Member<IDBKey> m_upper;
- LowerBoundType m_lowerType;
- UpperBoundType m_upperType;
+ const LowerBoundType m_lowerType;
+ const UpperBoundType m_upperType;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698