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

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

Issue 23072015: Get rid of lazy block. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderLazyBlock.cpp ('k') | Source/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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 virtual bool isListBox() const { return false; } 326 virtual bool isListBox() const { return false; }
327 virtual bool isListItem() const { return false; } 327 virtual bool isListItem() const { return false; }
328 virtual bool isListMarker() const { return false; } 328 virtual bool isListMarker() const { return false; }
329 virtual bool isMarquee() const { return false; } 329 virtual bool isMarquee() const { return false; }
330 virtual bool isMedia() const { return false; } 330 virtual bool isMedia() const { return false; }
331 virtual bool isMenuList() const { return false; } 331 virtual bool isMenuList() const { return false; }
332 virtual bool isMeter() const { return false; } 332 virtual bool isMeter() const { return false; }
333 virtual bool isProgress() const { return false; } 333 virtual bool isProgress() const { return false; }
334 virtual bool isRenderBlock() const { return false; } 334 virtual bool isRenderBlock() const { return false; }
335 virtual bool isRenderSVGBlock() const { return false; }; 335 virtual bool isRenderSVGBlock() const { return false; };
336 virtual bool isRenderLazyBlock() const { return false; }
337 virtual bool isRenderButton() const { return false; } 336 virtual bool isRenderButton() const { return false; }
338 virtual bool isRenderIFrame() const { return false; } 337 virtual bool isRenderIFrame() const { return false; }
339 virtual bool isRenderImage() const { return false; } 338 virtual bool isRenderImage() const { return false; }
340 virtual bool isRenderInline() const { return false; } 339 virtual bool isRenderInline() const { return false; }
341 virtual bool isRenderPart() const { return false; } 340 virtual bool isRenderPart() const { return false; }
342 virtual bool isRenderRegion() const { return false; } 341 virtual bool isRenderRegion() const { return false; }
343 virtual bool isRenderView() const { return false; } 342 virtual bool isRenderView() const { return false; }
344 virtual bool isReplica() const { return false; } 343 virtual bool isReplica() const { return false; }
345 344
346 virtual bool isRuby() const { return false; } 345 virtual bool isRuby() const { return false; }
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 // Outside the WebCore namespace for ease of invocation from gdb. 1395 // Outside the WebCore namespace for ease of invocation from gdb.
1397 void showTree(const WebCore::RenderObject*); 1396 void showTree(const WebCore::RenderObject*);
1398 void showLineTree(const WebCore::RenderObject*); 1397 void showLineTree(const WebCore::RenderObject*);
1399 void showRenderTree(const WebCore::RenderObject* object1); 1398 void showRenderTree(const WebCore::RenderObject* object1);
1400 // We don't make object2 an optional parameter so that showRenderTree 1399 // We don't make object2 an optional parameter so that showRenderTree
1401 // can be called from gdb easily. 1400 // can be called from gdb easily.
1402 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1401 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1403 #endif 1402 #endif
1404 1403
1405 #endif // RenderObject_h 1404 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLazyBlock.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698