Changeset 27242 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Oct 29, 2007, 6:34:00 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r27210 r27242 26 26 #define KJS_FUNCTION_H 27 27 28 #include "LocalStorage.h" 28 29 #include "SymbolTable.h" 29 30 #include "object.h" 30 31 #include <wtf/OwnPtr.h> 31 #include <wtf/Vector.h>32 32 33 33 namespace KJS { … … 139 139 140 140 class ActivationImp : public JSObject { 141 public:142 struct LocalStorageEntry {143 LocalStorageEntry()144 {145 }146 147 LocalStorageEntry(JSValue* v, int a)148 : value(v)149 , attributes(a)150 {151 }152 153 JSValue* value;154 int attributes;155 };156 157 typedef Vector<LocalStorageEntry, 32> LocalStorage;158 159 141 private: 160 142 struct ActivationImpPrivate {
Note:
See TracChangeset
for help on using the changeset viewer.