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

Side by Side Diff: Source/core/dom/NamedFlow.h

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Address comments. Created 7 years 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/dom/MessagePort.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/dom/MessagePort.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698