OLD | NEW |
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 | 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 24 matching lines...) Expand all Loading... |
35 class DOMWindowProperty : public WillBeGarbageCollectedMixin { | 35 class DOMWindowProperty : public WillBeGarbageCollectedMixin { |
36 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowProperty); | 36 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowProperty); |
37 public: | 37 public: |
38 explicit DOMWindowProperty(LocalFrame*); | 38 explicit DOMWindowProperty(LocalFrame*); |
39 | 39 |
40 virtual void willDestroyGlobalObjectInFrame(); | 40 virtual void willDestroyGlobalObjectInFrame(); |
41 virtual void willDetachGlobalObjectFromFrame(); | 41 virtual void willDetachGlobalObjectFromFrame(); |
42 | 42 |
43 LocalFrame* frame() const { return m_frame; } | 43 LocalFrame* frame() const { return m_frame; } |
44 | 44 |
45 virtual void trace(Visitor*) { } | 45 virtual void trace(Visitor*); |
46 | 46 |
47 protected: | 47 protected: |
48 LocalFrame* m_frame; | 48 RawPtrWillBeWeakMember<LocalFrame> m_frame; |
49 }; | 49 }; |
50 | 50 |
51 } | 51 } // namespace blink |
52 | 52 |
53 #endif | 53 #endif |
OLD | NEW |