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

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

Issue 611983006: Add a safe cast for RenderSliderThumb (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 virtual bool isRenderRegion() const { return false; } 387 virtual bool isRenderRegion() const { return false; }
388 virtual bool isRenderScrollbarPart() const { return false; } 388 virtual bool isRenderScrollbarPart() const { return false; }
389 virtual bool isRenderTableCol() const { return false; } 389 virtual bool isRenderTableCol() const { return false; }
390 virtual bool isRenderView() const { return false; } 390 virtual bool isRenderView() const { return false; }
391 virtual bool isReplica() const { return false; } 391 virtual bool isReplica() const { return false; }
392 virtual bool isRuby() const { return false; } 392 virtual bool isRuby() const { return false; }
393 virtual bool isRubyBase() const { return false; } 393 virtual bool isRubyBase() const { return false; }
394 virtual bool isRubyRun() const { return false; } 394 virtual bool isRubyRun() const { return false; }
395 virtual bool isRubyText() const { return false; } 395 virtual bool isRubyText() const { return false; }
396 virtual bool isSlider() const { return false; } 396 virtual bool isSlider() const { return false; }
397 virtual bool isSliderThumb() const { return false; }
398 virtual bool isTable() const { return false; } 397 virtual bool isTable() const { return false; }
399 virtual bool isTableCaption() const { return false; } 398 virtual bool isTableCaption() const { return false; }
400 virtual bool isTableCell() const { return false; } 399 virtual bool isTableCell() const { return false; }
401 virtual bool isTableRow() const { return false; } 400 virtual bool isTableRow() const { return false; }
402 virtual bool isTableSection() const { return false; } 401 virtual bool isTableSection() const { return false; }
403 virtual bool isTextArea() const { return false; } 402 virtual bool isTextArea() const { return false; }
404 virtual bool isTextControl() const { return false; } 403 virtual bool isTextControl() const { return false; }
405 virtual bool isTextField() const { return false; } 404 virtual bool isTextField() const { return false; }
406 virtual bool isVideo() const { return false; } 405 virtual bool isVideo() const { return false; }
407 virtual bool isWidget() const { return false; } 406 virtual bool isWidget() const { return false; }
(...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 void showTree(const blink::RenderObject*); 1556 void showTree(const blink::RenderObject*);
1558 void showLineTree(const blink::RenderObject*); 1557 void showLineTree(const blink::RenderObject*);
1559 void showRenderTree(const blink::RenderObject* object1); 1558 void showRenderTree(const blink::RenderObject* object1);
1560 // We don't make object2 an optional parameter so that showRenderTree 1559 // We don't make object2 an optional parameter so that showRenderTree
1561 // can be called from gdb easily. 1560 // can be called from gdb easily.
1562 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1561 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1563 1562
1564 #endif 1563 #endif
1565 1564
1566 #endif // RenderObject_h 1565 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/RenderSlider.cpp » ('j') | Source/core/rendering/RenderSlider.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698