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

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 13937017: Implement lazy block layout prototype behind a runtime flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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) 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 virtual bool isInlineBlockOrInlineTable() const { return false; } 335 virtual bool isInlineBlockOrInlineTable() const { return false; }
336 virtual bool isLayerModelObject() const { return false; } 336 virtual bool isLayerModelObject() const { return false; }
337 virtual bool isListBox() const { return false; } 337 virtual bool isListBox() const { return false; }
338 virtual bool isListItem() const { return false; } 338 virtual bool isListItem() const { return false; }
339 virtual bool isListMarker() const { return false; } 339 virtual bool isListMarker() const { return false; }
340 virtual bool isMedia() const { return false; } 340 virtual bool isMedia() const { return false; }
341 virtual bool isMenuList() const { return false; } 341 virtual bool isMenuList() const { return false; }
342 virtual bool isMeter() const { return false; } 342 virtual bool isMeter() const { return false; }
343 virtual bool isProgress() const { return false; } 343 virtual bool isProgress() const { return false; }
344 virtual bool isRenderBlock() const { return false; } 344 virtual bool isRenderBlock() const { return false; }
345 virtual bool isRenderLazyBlock() const { return false; }
345 virtual bool isRenderButton() const { return false; } 346 virtual bool isRenderButton() const { return false; }
346 virtual bool isRenderIFrame() const { return false; } 347 virtual bool isRenderIFrame() const { return false; }
347 virtual bool isRenderImage() const { return false; } 348 virtual bool isRenderImage() const { return false; }
348 virtual bool isRenderInline() const { return false; } 349 virtual bool isRenderInline() const { return false; }
349 virtual bool isRenderPart() const { return false; } 350 virtual bool isRenderPart() const { return false; }
350 virtual bool isRenderRegion() const { return false; } 351 virtual bool isRenderRegion() const { return false; }
351 virtual bool isRenderView() const { return false; } 352 virtual bool isRenderView() const { return false; }
352 virtual bool isReplica() const { return false; } 353 virtual bool isReplica() const { return false; }
353 354
354 virtual bool isRuby() const { return false; } 355 virtual bool isRuby() const { return false; }
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 // Outside the WebCore namespace for ease of invocation from gdb. 1340 // Outside the WebCore namespace for ease of invocation from gdb.
1340 void showTree(const WebCore::RenderObject*); 1341 void showTree(const WebCore::RenderObject*);
1341 void showLineTree(const WebCore::RenderObject*); 1342 void showLineTree(const WebCore::RenderObject*);
1342 void showRenderTree(const WebCore::RenderObject* object1); 1343 void showRenderTree(const WebCore::RenderObject* object1);
1343 // We don't make object2 an optional parameter so that showRenderTree 1344 // We don't make object2 an optional parameter so that showRenderTree
1344 // can be called from gdb easily. 1345 // can be called from gdb easily.
1345 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1346 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1346 #endif 1347 #endif
1347 1348
1348 #endif // RenderObject_h 1349 #endif // RenderObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698