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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 1438143002: Oilpan: add missing LocalFrame::m_pluginElements annotation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | 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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 // of in the process. This is needed as the plugin element 228 // of in the process. This is needed as the plugin element
229 // might not itself be attached to a DOM tree and be 229 // might not itself be attached to a DOM tree and be
230 // explicitly detached&disposed of. 230 // explicitly detached&disposed of.
231 // 231 //
232 // A weak reference is all wanted; the plugin element must 232 // A weak reference is all wanted; the plugin element must
233 // otherwise be referenced and kept alive. So as to be able 233 // otherwise be referenced and kept alive. So as to be able
234 // to process the set of weak references during the LocalFrame's 234 // to process the set of weak references during the LocalFrame's
235 // weak callback, the set itself is not on the heap and the 235 // weak callback, the set itself is not on the heap and the
236 // references are bare pointers (rather than WeakMembers.) 236 // references are bare pointers (rather than WeakMembers.)
237 // See LocalFrame::clearWeakMembers(). 237 // See LocalFrame::clearWeakMembers().
238 GC_PLUGIN_IGNORE("553613")
238 HashSet<HTMLPlugInElement*> m_pluginElements; 239 HashSet<HTMLPlugInElement*> m_pluginElements;
239 #endif 240 #endif
240 241
241 float m_pageZoomFactor; 242 float m_pageZoomFactor;
242 float m_textZoomFactor; 243 float m_textZoomFactor;
243 244
244 bool m_inViewSourceMode; 245 bool m_inViewSourceMode;
245 246
246 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; 247 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
247 248
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame); 328 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame);
328 329
329 } // namespace blink 330 } // namespace blink
330 331
331 // During refactoring, there are some places where we need to do type conversion s that 332 // During refactoring, there are some places where we need to do type conversion s that
332 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte d out. 333 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte d out.
333 // At that time this #define will be removed and all the uses of it will need to be corrected. 334 // At that time this #define will be removed and all the uses of it will need to be corrected.
334 #define toLocalFrameTemporary toLocalFrame 335 #define toLocalFrameTemporary toLocalFrame
335 336
336 #endif // LocalFrame_h 337 #endif // LocalFrame_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698