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

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

Issue 341433003: Oilpan: Prepare to move ScriptedAnimationController to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 1378
1379 bool m_directionSetOnDocumentElement; 1379 bool m_directionSetOnDocumentElement;
1380 bool m_writingModeSetOnDocumentElement; 1380 bool m_writingModeSetOnDocumentElement;
1381 DocumentTiming m_documentTiming; 1381 DocumentTiming m_documentTiming;
1382 RefPtrWillBeMember<MediaQueryMatcher> m_mediaQueryMatcher; 1382 RefPtrWillBeMember<MediaQueryMatcher> m_mediaQueryMatcher;
1383 bool m_writeRecursionIsTooDeep; 1383 bool m_writeRecursionIsTooDeep;
1384 unsigned m_writeRecursionDepth; 1384 unsigned m_writeRecursionDepth;
1385 1385
1386 OwnPtr<TouchEventTargetSet> m_touchEventTargets; 1386 OwnPtr<TouchEventTargetSet> m_touchEventTargets;
1387 1387
1388 RefPtr<ScriptedAnimationController> m_scriptedAnimationController; 1388 RefPtrWillBeMember<ScriptedAnimationController> m_scriptedAnimationControlle r;
1389 OwnPtr<MainThreadTaskRunner> m_taskRunner; 1389 OwnPtr<MainThreadTaskRunner> m_taskRunner;
1390 OwnPtr<TextAutosizer> m_textAutosizer; 1390 OwnPtr<TextAutosizer> m_textAutosizer;
1391 OwnPtr<FastTextAutosizer> m_fastTextAutosizer; 1391 OwnPtr<FastTextAutosizer> m_fastTextAutosizer;
1392 1392
1393 RefPtrWillBeMember<CustomElementRegistrationContext> m_registrationContext; 1393 RefPtrWillBeMember<CustomElementRegistrationContext> m_registrationContext;
1394 1394
1395 void elementDataCacheClearTimerFired(Timer<Document>*); 1395 void elementDataCacheClearTimerFired(Timer<Document>*);
1396 Timer<Document> m_elementDataCacheClearTimer; 1396 Timer<Document> m_elementDataCacheClearTimer;
1397 1397
1398 OwnPtr<ElementDataCache> m_elementDataCache; 1398 OwnPtr<ElementDataCache> m_elementDataCache;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 inline bool Node::isDocumentNode() const 1465 inline bool Node::isDocumentNode() const
1466 { 1466 {
1467 return this == document(); 1467 return this == document();
1468 } 1468 }
1469 1469
1470 Node* eventTargetNodeForDocument(Document*); 1470 Node* eventTargetNodeForDocument(Document*);
1471 1471
1472 } // namespace WebCore 1472 } // namespace WebCore
1473 1473
1474 #endif // Document_h 1474 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | Source/core/dom/ScriptedAnimationController.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698