OLD | NEW |
---|---|
1 | |
Mads Ager (chromium)
2014/03/26 06:36:03
Accidental edit?
| |
1 /* | 2 /* |
2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. |
3 * | 4 * |
4 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
6 * are met: | 7 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 | 70 |
70 private: | 71 private: |
71 StorageEvent(); | 72 StorageEvent(); |
72 StorageEvent(const AtomicString& type, const String& key, const String& oldV alue, const String& newValue, const String& url, Storage* storageArea); | 73 StorageEvent(const AtomicString& type, const String& key, const String& oldV alue, const String& newValue, const String& url, Storage* storageArea); |
73 StorageEvent(const AtomicString&, const StorageEventInit&); | 74 StorageEvent(const AtomicString&, const StorageEventInit&); |
74 | 75 |
75 String m_key; | 76 String m_key; |
76 String m_oldValue; | 77 String m_oldValue; |
77 String m_newValue; | 78 String m_newValue; |
78 String m_url; | 79 String m_url; |
79 RefPtrWillBePersistent<Storage> m_storageArea; | 80 RefPtrWillBeMember<Storage> m_storageArea; |
80 }; | 81 }; |
81 | 82 |
82 } // namespace WebCore | 83 } // namespace WebCore |
83 | 84 |
84 #endif // StorageEvent_h | 85 #endif // StorageEvent_h |
OLD | NEW |