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

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

Issue 14467003: Remove ENABLE_DIALOG_ELEMENT (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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 315
316 public: 316 public:
317 RenderArena* renderArena() const { return document()->renderArena(); } 317 RenderArena* renderArena() const { return document()->renderArena(); }
318 318
319 bool isPseudoElement() const { return node() && node()->isPseudoElement(); } 319 bool isPseudoElement() const { return node() && node()->isPseudoElement(); }
320 320
321 virtual bool isBR() const { return false; } 321 virtual bool isBR() const { return false; }
322 virtual bool isBlockFlow() const { return false; } 322 virtual bool isBlockFlow() const { return false; }
323 virtual bool isBoxModelObject() const { return false; } 323 virtual bool isBoxModelObject() const { return false; }
324 virtual bool isCounter() const { return false; } 324 virtual bool isCounter() const { return false; }
325 #if ENABLE(DIALOG_ELEMENT)
326 virtual bool isDialog() const { return false; } 325 virtual bool isDialog() const { return false; }
327 #endif
328 virtual bool isQuote() const { return false; } 326 virtual bool isQuote() const { return false; }
329 327
330 virtual bool isDetailsMarker() const { return false; } 328 virtual bool isDetailsMarker() const { return false; }
331 virtual bool isEmbeddedObject() const { return false; } 329 virtual bool isEmbeddedObject() const { return false; }
332 virtual bool isFieldset() const { return false; } 330 virtual bool isFieldset() const { return false; }
333 virtual bool isFileUploadControl() const { return false; } 331 virtual bool isFileUploadControl() const { return false; }
334 virtual bool isFrame() const { return false; } 332 virtual bool isFrame() const { return false; }
335 virtual bool isFrameSet() const { return false; } 333 virtual bool isFrameSet() const { return false; }
336 virtual bool isImage() const { return false; } 334 virtual bool isImage() const { return false; }
337 virtual bool isInlineBlockOrInlineTable() const { return false; } 335 virtual bool isInlineBlockOrInlineTable() const { return false; }
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 // Outside the WebCore namespace for ease of invocation from gdb. 1339 // Outside the WebCore namespace for ease of invocation from gdb.
1342 void showTree(const WebCore::RenderObject*); 1340 void showTree(const WebCore::RenderObject*);
1343 void showLineTree(const WebCore::RenderObject*); 1341 void showLineTree(const WebCore::RenderObject*);
1344 void showRenderTree(const WebCore::RenderObject* object1); 1342 void showRenderTree(const WebCore::RenderObject* object1);
1345 // We don't make object2 an optional parameter so that showRenderTree 1343 // We don't make object2 an optional parameter so that showRenderTree
1346 // can be called from gdb easily. 1344 // can be called from gdb easily.
1347 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1345 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1348 #endif 1346 #endif
1349 1347
1350 #endif // RenderObject_h 1348 #endif // RenderObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698