OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 * | 7 * |
8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 class NamedFlow : public RefCountedGarbageCollected<NamedFlow>, public EventTarg
et { | 50 class NamedFlow : public RefCountedGarbageCollected<NamedFlow>, public EventTarg
et { |
51 DECLARE_GC_INFO | 51 DECLARE_GC_INFO |
52 public: | 52 public: |
53 static PassRefPtr<NamedFlow> create(PassRefPtr<NamedFlowCollection> manager,
const AtomicString& flowThreadName); | 53 static PassRefPtr<NamedFlow> create(PassRefPtr<NamedFlowCollection> manager,
const AtomicString& flowThreadName); |
54 | 54 |
55 ~NamedFlow(); | 55 ~NamedFlow(); |
56 | 56 |
57 virtual void trace(Visitor*) { } | 57 virtual void trace(Visitor*) { } |
58 | 58 |
59 virtual void visitWith(Visitor* visitor) const OVERRIDE | 59 virtual void adjustAndMark(Visitor* visitor) const OVERRIDE |
60 { | 60 { |
61 visitor->visit(this); | 61 visitor->mark(this); |
62 } | 62 } |
63 | 63 |
64 const AtomicString& name() const; | 64 const AtomicString& name() const; |
65 bool overset() const; | 65 bool overset() const; |
66 int firstEmptyRegionIndex() const; | 66 int firstEmptyRegionIndex() const; |
67 NodeList* getRegionsByContent(Node*); | 67 NodeList* getRegionsByContent(Node*); |
68 NodeList* getRegions(); | 68 NodeList* getRegions(); |
69 NodeList* getContent(); | 69 NodeList* getContent(); |
70 | 70 |
71 using RefCountedGarbageCollected<NamedFlow>::ref; | 71 using RefCountedGarbageCollected<NamedFlow>::ref; |
(...skipping 29 matching lines...) Expand all Loading... |
101 | 101 |
102 RefPtr<NamedFlowCollection> m_flowManager; | 102 RefPtr<NamedFlowCollection> m_flowManager; |
103 RenderNamedFlowThread* m_parentFlowThread; | 103 RenderNamedFlowThread* m_parentFlowThread; |
104 | 104 |
105 EventTargetData m_eventTargetData; | 105 EventTargetData m_eventTargetData; |
106 }; | 106 }; |
107 | 107 |
108 } | 108 } |
109 | 109 |
110 #endif | 110 #endif |
OLD | NEW |