| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "bindings/core/v8/ScriptWrappable.h" | 29 #include "bindings/core/v8/ScriptWrappable.h" |
| 30 #include "modules/indexeddb/IDBKey.h" | 30 #include "modules/indexeddb/IDBKey.h" |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 class ExceptionState; | 34 class ExceptionState; |
| 35 class ExecutionContext; | 35 class ExecutionContext; |
| 36 class ScriptState; | 36 class ScriptState; |
| 37 class ScriptValue; | 37 class ScriptValue; |
| 38 | 38 |
| 39 class IDBKeyRange FINAL : public GarbageCollected<IDBKeyRange>, public ScriptWra
ppable { | 39 class IDBKeyRange final : public GarbageCollected<IDBKeyRange>, public ScriptWra
ppable { |
| 40 DEFINE_WRAPPERTYPEINFO(); | 40 DEFINE_WRAPPERTYPEINFO(); |
| 41 public: | 41 public: |
| 42 enum LowerBoundType { | 42 enum LowerBoundType { |
| 43 LowerBoundOpen, | 43 LowerBoundOpen, |
| 44 LowerBoundClosed | 44 LowerBoundClosed |
| 45 }; | 45 }; |
| 46 enum UpperBoundType { | 46 enum UpperBoundType { |
| 47 UpperBoundOpen, | 47 UpperBoundOpen, |
| 48 UpperBoundClosed | 48 UpperBoundClosed |
| 49 }; | 49 }; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 78 | 78 |
| 79 Member<IDBKey> m_lower; | 79 Member<IDBKey> m_lower; |
| 80 Member<IDBKey> m_upper; | 80 Member<IDBKey> m_upper; |
| 81 LowerBoundType m_lowerType; | 81 LowerBoundType m_lowerType; |
| 82 UpperBoundType m_upperType; | 82 UpperBoundType m_upperType; |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace blink | 85 } // namespace blink |
| 86 | 86 |
| 87 #endif // IDBKeyRange_h | 87 #endif // IDBKeyRange_h |
| OLD | NEW |