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

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

Issue 16695002: Uptake WebKit Changeset r149185. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Refetch render view and null check AXObjectCache Created 7 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 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 bool m_updateFocusAppearanceRestoresSelection; 1288 bool m_updateFocusAppearanceRestoresSelection;
1289 1289
1290 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter 1290 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter
1291 unsigned m_ignoreDestructiveWriteCount; 1291 unsigned m_ignoreDestructiveWriteCount;
1292 1292
1293 StringWithDirection m_title; 1293 StringWithDirection m_title;
1294 StringWithDirection m_rawTitle; 1294 StringWithDirection m_rawTitle;
1295 bool m_titleSetExplicitly; 1295 bool m_titleSetExplicitly;
1296 RefPtr<Element> m_titleElement; 1296 RefPtr<Element> m_titleElement;
1297 1297
1298 OwnPtr<RenderArena> m_renderArena; 1298 RefPtr<RenderArena> m_renderArena;
1299 1299
1300 OwnPtr<AXObjectCache> m_axObjectCache; 1300 OwnPtr<AXObjectCache> m_axObjectCache;
1301 OwnPtr<DocumentMarkerController> m_markers; 1301 OwnPtr<DocumentMarkerController> m_markers;
1302 1302
1303 Timer<Document> m_updateFocusAppearanceTimer; 1303 Timer<Document> m_updateFocusAppearanceTimer;
1304 1304
1305 Element* m_cssTarget; 1305 Element* m_cssTarget;
1306 1306
1307 // FIXME: Merge these 2 variables into an enum. Also, FrameLoader::m_didCall ImplicitClose 1307 // FIXME: Merge these 2 variables into an enum. Also, FrameLoader::m_didCall ImplicitClose
1308 // is almost a duplication of this data, so that should probably get merged in too. 1308 // is almost a duplication of this data, so that should probably get merged in too.
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 inline bool Node::isDocumentNode() const 1489 inline bool Node::isDocumentNode() const
1490 { 1490 {
1491 return this == documentInternal(); 1491 return this == documentInternal();
1492 } 1492 }
1493 1493
1494 Node* eventTargetNodeForDocument(Document*); 1494 Node* eventTargetNodeForDocument(Document*);
1495 1495
1496 } // namespace WebCore 1496 } // namespace WebCore
1497 1497
1498 #endif // Document_h 1498 #endif // Document_h
OLDNEW
« no previous file with comments | « LayoutTests/fast/frames/crash-remove-iframe-during-object-beforeload-2-expected.txt ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698