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

Side by Side Diff: Source/modules/indexeddb/IDBKeyRange.h

Issue 18398002: Remove IDBNotFoundError ExceptionCode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing include in code gen wich causes win compile failure Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 16 matching lines...) Expand all
27 #define IDBKeyRange_h 27 #define IDBKeyRange_h
28 28
29 #include "bindings/v8/Dictionary.h" 29 #include "bindings/v8/Dictionary.h"
30 #include "bindings/v8/ScriptWrappable.h" 30 #include "bindings/v8/ScriptWrappable.h"
31 #include "modules/indexeddb/IDBKey.h" 31 #include "modules/indexeddb/IDBKey.h"
32 #include "wtf/PassRefPtr.h" 32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 typedef int ExceptionCode; 37 class ExceptionState;
38 38
39 class IDBKeyRange : public ScriptWrappable, public RefCounted<IDBKeyRange> { 39 class IDBKeyRange : public ScriptWrappable, public RefCounted<IDBKeyRange> {
40 public: 40 public:
41 enum LowerBoundType { 41 enum LowerBoundType {
42 LowerBoundOpen, 42 LowerBoundOpen,
43 LowerBoundClosed 43 LowerBoundClosed
44 }; 44 };
45 enum UpperBoundType { 45 enum UpperBoundType {
46 UpperBoundOpen, 46 UpperBoundOpen,
47 UpperBoundClosed 47 UpperBoundClosed
48 }; 48 };
49 49
50 static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<I DBKey> upper, LowerBoundType lowerType, UpperBoundType upperType) 50 static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<I DBKey> upper, LowerBoundType lowerType, UpperBoundType upperType)
51 { 51 {
52 return adoptRef(new IDBKeyRange(lower, upper, lowerType, upperType)); 52 return adoptRef(new IDBKeyRange(lower, upper, lowerType, upperType));
53 } 53 }
54 static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> prpKey); 54 static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> prpKey);
55 ~IDBKeyRange() { } 55 ~IDBKeyRange() { }
56 56
57 // Implement the IDBKeyRange IDL 57 // Implement the IDBKeyRange IDL
58 PassRefPtr<IDBKey> lower() const { return m_lower; } 58 PassRefPtr<IDBKey> lower() const { return m_lower; }
59 PassRefPtr<IDBKey> upper() const { return m_upper; } 59 PassRefPtr<IDBKey> upper() const { return m_upper; }
60 60
61 ScriptValue lowerValue(ScriptExecutionContext*) const; 61 ScriptValue lowerValue(ScriptExecutionContext*) const;
62 ScriptValue upperValue(ScriptExecutionContext*) const; 62 ScriptValue upperValue(ScriptExecutionContext*) const;
63 bool lowerOpen() const { return m_lowerType == LowerBoundOpen; } 63 bool lowerOpen() const { return m_lowerType == LowerBoundOpen; }
64 bool upperOpen() const { return m_upperType == UpperBoundOpen; } 64 bool upperOpen() const { return m_upperType == UpperBoundOpen; }
65 65
66 static PassRefPtr<IDBKeyRange> only(ScriptExecutionContext*, const ScriptVal ue& key, ExceptionCode&); 66 static PassRefPtr<IDBKeyRange> only(ScriptExecutionContext*, const ScriptVal ue& key, ExceptionState&);
67 static PassRefPtr<IDBKeyRange> lowerBound(ScriptExecutionContext*, const Scr iptValue& bound, bool open, ExceptionCode&); 67 static PassRefPtr<IDBKeyRange> lowerBound(ScriptExecutionContext*, const Scr iptValue& bound, bool open, ExceptionState&);
68 static PassRefPtr<IDBKeyRange> upperBound(ScriptExecutionContext*, const Scr iptValue& bound, bool open, ExceptionCode&); 68 static PassRefPtr<IDBKeyRange> upperBound(ScriptExecutionContext*, const Scr iptValue& bound, bool open, ExceptionState&);
69 static PassRefPtr<IDBKeyRange> bound(ScriptExecutionContext*, const ScriptVa lue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionC ode&); 69 static PassRefPtr<IDBKeyRange> bound(ScriptExecutionContext*, const ScriptVa lue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionS tate&);
70 70
71 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value, ExceptionCode& ); 71 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value, ExceptionState &);
72 72
73 bool isOnlyKey() const; 73 bool isOnlyKey() const;
74 74
75 private: 75 private:
76 IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundTy pe lowerType, UpperBoundType upperType); 76 IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundTy pe lowerType, UpperBoundType upperType);
77 77
78 RefPtr<IDBKey> m_lower; 78 RefPtr<IDBKey> m_lower;
79 RefPtr<IDBKey> m_upper; 79 RefPtr<IDBKey> m_upper;
80 LowerBoundType m_lowerType; 80 LowerBoundType m_lowerType;
81 UpperBoundType m_upperType; 81 UpperBoundType m_upperType;
82 }; 82 };
83 83
84 } // namespace WebCore 84 } // namespace WebCore
85 85
86 #endif // IDBKeyRange_h 86 #endif // IDBKeyRange_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698