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

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

Issue 137303004: Remove isRenderSVGBlock (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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) 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 virtual bool isListBox() const { return false; } 334 virtual bool isListBox() const { return false; }
335 virtual bool isListItem() const { return false; } 335 virtual bool isListItem() const { return false; }
336 virtual bool isListMarker() const { return false; } 336 virtual bool isListMarker() const { return false; }
337 virtual bool isMarquee() const { return false; } 337 virtual bool isMarquee() const { return false; }
338 virtual bool isMedia() const { return false; } 338 virtual bool isMedia() const { return false; }
339 virtual bool isMenuList() const { return false; } 339 virtual bool isMenuList() const { return false; }
340 virtual bool isMeter() const { return false; } 340 virtual bool isMeter() const { return false; }
341 virtual bool isProgress() const { return false; } 341 virtual bool isProgress() const { return false; }
342 virtual bool isRenderBlock() const { return false; } 342 virtual bool isRenderBlock() const { return false; }
343 virtual bool isRenderBlockFlow() const { return false; } 343 virtual bool isRenderBlockFlow() const { return false; }
344 virtual bool isRenderSVGBlock() const { return false; };
345 virtual bool isRenderButton() const { return false; } 344 virtual bool isRenderButton() const { return false; }
346 virtual bool isRenderIFrame() const { return false; } 345 virtual bool isRenderIFrame() const { return false; }
347 virtual bool isRenderImage() const { return false; } 346 virtual bool isRenderImage() const { return false; }
348 virtual bool isRenderInline() const { return false; } 347 virtual bool isRenderInline() const { return false; }
349 virtual bool isRenderPart() const { return false; } 348 virtual bool isRenderPart() const { return false; }
350 virtual bool isRenderRegion() const { return false; } 349 virtual bool isRenderRegion() const { return false; }
351 virtual bool isRenderNamedFlowFragment() const { return false; } 350 virtual bool isRenderNamedFlowFragment() const { return false; }
352 virtual bool isRenderView() const { return false; } 351 virtual bool isRenderView() const { return false; }
353 virtual bool isReplica() const { return false; } 352 virtual bool isReplica() const { return false; }
354 353
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 void showTree(const WebCore::RenderObject*); 1426 void showTree(const WebCore::RenderObject*);
1428 void showLineTree(const WebCore::RenderObject*); 1427 void showLineTree(const WebCore::RenderObject*);
1429 void showRenderTree(const WebCore::RenderObject* object1); 1428 void showRenderTree(const WebCore::RenderObject* object1);
1430 // We don't make object2 an optional parameter so that showRenderTree 1429 // We don't make object2 an optional parameter so that showRenderTree
1431 // can be called from gdb easily. 1430 // can be called from gdb easily.
1432 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1431 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1433 1432
1434 #endif 1433 #endif
1435 1434
1436 #endif // RenderObject_h 1435 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.h ('k') | Source/core/rendering/svg/RenderSVGBlock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698