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

Side by Side Diff: third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h

Issue 1463433002: Use RefPtr for MutationObserver in MutationObserverInterestGroup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the test Created 5 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 return createIfNeeded(target, MutationObserver::Attributes, MutationObse rver::AttributeOldValue, &attributeName); 69 return createIfNeeded(target, MutationObserver::Attributes, MutationObse rver::AttributeOldValue, &attributeName);
70 } 70 }
71 71
72 bool isOldValueRequested(); 72 bool isOldValueRequested();
73 void enqueueMutationRecord(PassRefPtrWillBeRawPtr<MutationRecord>); 73 void enqueueMutationRecord(PassRefPtrWillBeRawPtr<MutationRecord>);
74 74
75 DECLARE_TRACE(); 75 DECLARE_TRACE();
76 76
77 private: 77 private:
78 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createIfNeeded( Node& target, MutationObserver::MutationType, MutationRecordDeliveryOptions oldV alueFlag, const QualifiedName* attributeName = 0); 78 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createIfNeeded( Node& target, MutationObserver::MutationType, MutationRecordDeliveryOptions oldV alueFlag, const QualifiedName* attributeName = 0);
79 MutationObserverInterestGroup(WillBeHeapHashMap<RawPtrWillBeMember<MutationO bserver>, MutationRecordDeliveryOptions>& observers, MutationRecordDeliveryOptio ns oldValueFlag); 79 MutationObserverInterestGroup(WillBeHeapHashMap<RefPtrWillBeMember<MutationO bserver>, MutationRecordDeliveryOptions>& observers, MutationRecordDeliveryOptio ns oldValueFlag);
80 80
81 bool hasOldValue(MutationRecordDeliveryOptions options) { return options & m _oldValueFlag; } 81 bool hasOldValue(MutationRecordDeliveryOptions options) { return options & m _oldValueFlag; }
82 82
83 WillBeHeapHashMap<RawPtrWillBeMember<MutationObserver>, MutationRecordDelive ryOptions> m_observers; 83 WillBeHeapHashMap<RefPtrWillBeMember<MutationObserver>, MutationRecordDelive ryOptions> m_observers;
84 MutationRecordDeliveryOptions m_oldValueFlag; 84 MutationRecordDeliveryOptions m_oldValueFlag;
85 }; 85 };
86 86
87 } 87 }
88 88
89 #endif // MutationObserverInterestGroup_h 89 #endif // MutationObserverInterestGroup_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698