Changeset 29943 in webkit for trunk/JavaScriptCore/kjs/LocalStorage.h
- Timestamp:
- Feb 2, 2008, 4:20:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/LocalStorage.h
r29663 r29943 2 2 /* 3 3 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved.4 * Copyright (C) 2003, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Cameron Zwarich ([email protected]) 6 6 * Copyright (C) 2007 Maks Orlovich … … 37 37 } 38 38 39 LocalStorageEntry(JSValue* v, inta)39 LocalStorageEntry(JSValue* v, unsigned a) 40 40 : value(v) 41 41 , attributes(a) … … 44 44 45 45 JSValue* value; 46 intattributes;46 unsigned attributes; 47 47 }; 48 48
Note:
See TracChangeset
for help on using the changeset viewer.