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

Side by Side Diff: Source/core/storage/StorageEvent.h

Issue 208743011: Oilpan: Change persistent handles in the Event hierarchy to members (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/core/events/TouchEvent.cpp ('k') | Source/core/storage/StorageEvent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/events/TouchEvent.cpp ('k') | Source/core/storage/StorageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698