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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 2228843003: [LayoutNG] Change core/layout/ng to Chromium style and rename files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "core/layout/LayoutListItem.h" 59 #include "core/layout/LayoutListItem.h"
60 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" 60 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h"
61 #include "core/layout/LayoutPart.h" 61 #include "core/layout/LayoutPart.h"
62 #include "core/layout/LayoutScrollbarPart.h" 62 #include "core/layout/LayoutScrollbarPart.h"
63 #include "core/layout/LayoutTableCaption.h" 63 #include "core/layout/LayoutTableCaption.h"
64 #include "core/layout/LayoutTableCell.h" 64 #include "core/layout/LayoutTableCell.h"
65 #include "core/layout/LayoutTableCol.h" 65 #include "core/layout/LayoutTableCol.h"
66 #include "core/layout/LayoutTableRow.h" 66 #include "core/layout/LayoutTableRow.h"
67 #include "core/layout/LayoutTheme.h" 67 #include "core/layout/LayoutTheme.h"
68 #include "core/layout/LayoutView.h" 68 #include "core/layout/LayoutView.h"
69 #include "core/layout/ng/LayoutNGBlockFlow.h" 69 #include "core/layout/ng/layout_ng_block_flow.h"
70 #include "core/page/AutoscrollController.h" 70 #include "core/page/AutoscrollController.h"
71 #include "core/page/Page.h" 71 #include "core/page/Page.h"
72 #include "core/paint/ObjectPaintProperties.h" 72 #include "core/paint/ObjectPaintProperties.h"
73 #include "core/paint/PaintLayer.h" 73 #include "core/paint/PaintLayer.h"
74 #include "core/style/ContentData.h" 74 #include "core/style/ContentData.h"
75 #include "core/style/CursorData.h" 75 #include "core/style/CursorData.h"
76 #include "platform/HostWindow.h" 76 #include "platform/HostWindow.h"
77 #include "platform/RuntimeEnabledFeatures.h" 77 #include "platform/RuntimeEnabledFeatures.h"
78 #include "platform/TracedValue.h" 78 #include "platform/TracedValue.h"
79 #include "platform/geometry/TransformState.h" 79 #include "platform/geometry/TransformState.h"
(...skipping 3575 matching lines...) Expand 10 before | Expand all | Expand 10 after
3655 const blink::LayoutObject* root = object1; 3655 const blink::LayoutObject* root = object1;
3656 while (root->parent()) 3656 while (root->parent())
3657 root = root->parent(); 3657 root = root->parent();
3658 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); 3658 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0);
3659 } else { 3659 } else {
3660 WTFLogAlways("%s", "Cannot showLayoutTree. Root is (nil)"); 3660 WTFLogAlways("%s", "Cannot showLayoutTree. Root is (nil)");
3661 } 3661 }
3662 } 3662 }
3663 3663
3664 #endif 3664 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/layout/ng/LayoutNGBlockFlow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698