| Index: content/common/indexed_db/indexed_db_key_range.cc
|
| diff --git a/content/common/indexed_db/indexed_db_key_range.cc b/content/common/indexed_db/indexed_db_key_range.cc
|
| index 0567e8d809c00d41b07721446faf5203497aeec2..1449734d5f617240e8b023c6832be37e122c6f58 100644
|
| --- a/content/common/indexed_db/indexed_db_key_range.cc
|
| +++ b/content/common/indexed_db/indexed_db_key_range.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include "base/logging.h"
|
|
|
| +namespace content {
|
| +
|
| using WebKit::WebIDBKeyRange;
|
| using WebKit::WebIDBKey;
|
|
|
| @@ -39,3 +41,5 @@ void IndexedDBKeyRange::Set(const IndexedDBKey& lower,
|
| IndexedDBKeyRange::operator WebIDBKeyRange() const {
|
| return WebIDBKeyRange(lower_, upper_, lower_open_, upper_open_);
|
| }
|
| +
|
| +} // namespace content
|
|
|