| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Apple 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 private: | 61 private: |
| 62 StorageEvent(); | 62 StorageEvent(); |
| 63 StorageEvent(const AtomicString& type, const String& key, const String& oldV
alue, const String& newValue, const String& url, Storage* storageArea); | 63 StorageEvent(const AtomicString& type, const String& key, const String& oldV
alue, const String& newValue, const String& url, Storage* storageArea); |
| 64 StorageEvent(const AtomicString&, const StorageEventInit&); | 64 StorageEvent(const AtomicString&, const StorageEventInit&); |
| 65 | 65 |
| 66 String m_key; | 66 String m_key; |
| 67 String m_oldValue; | 67 String m_oldValue; |
| 68 String m_newValue; | 68 String m_newValue; |
| 69 String m_url; | 69 String m_url; |
| 70 RefPtrWillBeMember<Storage> m_storageArea; | 70 PersistentWillBeMember<Storage> m_storageArea; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace blink | 73 } // namespace blink |
| 74 | 74 |
| 75 #endif // StorageEvent_h | 75 #endif // StorageEvent_h |
| OLD | NEW |