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

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

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Document.cpp » ('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) 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 // auto is specified. 490 // auto is specified.
491 void pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& margi nTop, int& marginRight, int& marginBottom, int& marginLeft); 491 void pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& margi nTop, int& marginRight, int& marginBottom, int& marginLeft);
492 492
493 ResourceFetcher* fetcher() { return m_fetcher.get(); } 493 ResourceFetcher* fetcher() { return m_fetcher.get(); }
494 494
495 virtual void attach(const AttachContext& = AttachContext()) override; 495 virtual void attach(const AttachContext& = AttachContext()) override;
496 virtual void detach(const AttachContext& = AttachContext()) override; 496 virtual void detach(const AttachContext& = AttachContext()) override;
497 void prepareForDestruction(); 497 void prepareForDestruction();
498 498
499 // If you have a Document, use layoutView() instead which is faster. 499 // If you have a Document, use layoutView() instead which is faster.
500 void renderer() const = delete; 500 void layoutObject() const = delete;
501 501
502 LayoutView* layoutView() const { return m_layoutView; } 502 LayoutView* layoutView() const { return m_layoutView; }
503 503
504 Document& axObjectCacheOwner() const; 504 Document& axObjectCacheOwner() const;
505 AXObjectCache* existingAXObjectCache() const; 505 AXObjectCache* existingAXObjectCache() const;
506 AXObjectCache* axObjectCache() const; 506 AXObjectCache* axObjectCache() const;
507 void clearAXObjectCache(); 507 void clearAXObjectCache();
508 508
509 // to get visually ordered hebrew and arabic pages right 509 // to get visually ordered hebrew and arabic pages right
510 bool visuallyOrdered() const { return m_visuallyOrdered; } 510 bool visuallyOrdered() const { return m_visuallyOrdered; }
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1431 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1432 1432
1433 } // namespace blink 1433 } // namespace blink
1434 1434
1435 #ifndef NDEBUG 1435 #ifndef NDEBUG
1436 // Outside the WebCore namespace for ease of invocation from gdb. 1436 // Outside the WebCore namespace for ease of invocation from gdb.
1437 void showLiveDocumentInstances(); 1437 void showLiveDocumentInstances();
1438 #endif 1438 #endif
1439 1439
1440 #endif // Document_h 1440 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698