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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2181953004: Changed ComputedStyle's EVisibility to be an enum class and fixed naming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_move_computedstyle_around
Patch Set: Added underlying type notes Created 4 years, 4 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
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, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after
1989 } 1989 }
1990 1990
1991 PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex) 1991 PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex)
1992 { 1992 {
1993 updateDistribution(); 1993 updateDistribution();
1994 return ensureStyleResolver().styleForPage(pageIndex); 1994 return ensureStyleResolver().styleForPage(pageIndex);
1995 } 1995 }
1996 1996
1997 bool Document::isPageBoxVisible(int pageIndex) 1997 bool Document::isPageBoxVisible(int pageIndex)
1998 { 1998 {
1999 return styleForPage(pageIndex)->visibility() != HIDDEN; // display property doesn't apply to @page. 1999 return styleForPage(pageIndex)->visibility() != EVisibility::Hidden; // disp lay property doesn't apply to @page.
2000 } 2000 }
2001 2001
2002 void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) 2002 void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft)
2003 { 2003 {
2004 RefPtr<ComputedStyle> style = styleForPage(pageIndex); 2004 RefPtr<ComputedStyle> style = styleForPage(pageIndex);
2005 2005
2006 int width = pageSize.width(); 2006 int width = pageSize.width();
2007 int height = pageSize.height(); 2007 int height = pageSize.height();
2008 switch (style->getPageSizeType()) { 2008 switch (style->getPageSizeType()) {
2009 case PAGE_SIZE_AUTO: 2009 case PAGE_SIZE_AUTO:
(...skipping 4028 matching lines...) Expand 10 before | Expand all | Expand 10 after
6038 } 6038 }
6039 6039
6040 void showLiveDocumentInstances() 6040 void showLiveDocumentInstances()
6041 { 6041 {
6042 WeakDocumentSet& set = liveDocumentSet(); 6042 WeakDocumentSet& set = liveDocumentSet();
6043 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6043 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6044 for (Document* document : set) 6044 for (Document* document : set)
6045 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6045 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6046 } 6046 }
6047 #endif 6047 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698