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

Side by Side Diff: sky/engine/core/rendering/RenderObject.h

Issue 698613002: Remove border-fit. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/rendering/RenderBox.cpp ('k') | sky/engine/core/rendering/RenderObject.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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 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) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 ApplyContainerFlip = 1 << 1, 107 ApplyContainerFlip = 1 << 1,
108 // FIXME(sky): Remove 108 // FIXME(sky): Remove
109 TraverseDocumentBoundaries = 1 << 2, 109 TraverseDocumentBoundaries = 1 << 2,
110 }; 110 };
111 typedef unsigned MapCoordinatesFlags; 111 typedef unsigned MapCoordinatesFlags;
112 112
113 enum InvalidationReason { 113 enum InvalidationReason {
114 InvalidationNone, 114 InvalidationNone,
115 InvalidationIncremental, 115 InvalidationIncremental,
116 InvalidationFull, 116 InvalidationFull,
117 InvalidationBorderFitLines,
118 InvalidationBorderBoxChange, 117 InvalidationBorderBoxChange,
119 InvalidationBoundsChange, 118 InvalidationBoundsChange,
120 InvalidationLocationChange, 119 InvalidationLocationChange,
121 InvalidationScroll, 120 InvalidationScroll,
122 InvalidationSelection, 121 InvalidationSelection,
123 InvalidationLayer, 122 InvalidationLayer,
124 InvalidationPaint, 123 InvalidationPaint,
125 InvalidationPaintRectangle 124 InvalidationPaintRectangle
126 }; 125 };
127 126
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 void showTree(const blink::RenderObject*); 1333 void showTree(const blink::RenderObject*);
1335 void showLineTree(const blink::RenderObject*); 1334 void showLineTree(const blink::RenderObject*);
1336 void showRenderTree(const blink::RenderObject* object1); 1335 void showRenderTree(const blink::RenderObject* object1);
1337 // We don't make object2 an optional parameter so that showRenderTree 1336 // We don't make object2 an optional parameter so that showRenderTree
1338 // can be called from gdb easily. 1337 // can be called from gdb easily.
1339 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1338 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1340 1339
1341 #endif 1340 #endif
1342 1341
1343 #endif // RenderObject_h 1342 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderBox.cpp ('k') | sky/engine/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698