OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ | 5 #ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ |
6 #define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ | 6 #define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
11 #include "content/common/indexed_db/indexed_db_key.h" | 10 #include "content/common/indexed_db/indexed_db_key.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyRange.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyRange.h" |
13 | 12 |
14 namespace content { | 13 namespace content { |
15 | 14 |
16 class CONTENT_EXPORT IndexedDBKeyRange { | 15 class CONTENT_EXPORT IndexedDBKeyRange { |
17 public: | 16 public: |
(...skipping 14 matching lines...) Expand all Loading... |
32 private: | 31 private: |
33 IndexedDBKey lower_; | 32 IndexedDBKey lower_; |
34 IndexedDBKey upper_; | 33 IndexedDBKey upper_; |
35 bool lower_open_; | 34 bool lower_open_; |
36 bool upper_open_; | 35 bool upper_open_; |
37 }; | 36 }; |
38 | 37 |
39 } // namespace content | 38 } // namespace content |
40 | 39 |
41 #endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ | 40 #endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_RANGE_H_ |
OLD | NEW |