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

Side by Side Diff: sky/engine/core/rendering/RenderObject.h

Issue 653993007: Remove straggling bits of listboxes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 void* operator new(size_t); 319 void* operator new(size_t);
320 void operator delete(void*); 320 void operator delete(void*);
321 #endif 321 #endif
322 322
323 public: 323 public:
324 virtual bool isBoxModelObject() const { return false; } 324 virtual bool isBoxModelObject() const { return false; }
325 virtual bool isCanvas() const { return false; } 325 virtual bool isCanvas() const { return false; }
326 virtual bool isImage() const { return false; } 326 virtual bool isImage() const { return false; }
327 virtual bool isInlineBlock() const { return false; } 327 virtual bool isInlineBlock() const { return false; }
328 virtual bool isLayerModelObject() const { return false; } 328 virtual bool isLayerModelObject() const { return false; }
329 virtual bool isListBox() const { return false; }
330 virtual bool isMedia() const { return false; } 329 virtual bool isMedia() const { return false; }
331 virtual bool isRenderBlock() const { return false; } 330 virtual bool isRenderBlock() const { return false; }
332 virtual bool isRenderBlockFlow() const { return false; } 331 virtual bool isRenderBlockFlow() const { return false; }
333 virtual bool isRenderGrid() const { return false; } 332 virtual bool isRenderGrid() const { return false; }
334 virtual bool isRenderImage() const { return false; } 333 virtual bool isRenderImage() const { return false; }
335 virtual bool isRenderInline() const { return false; } 334 virtual bool isRenderInline() const { return false; }
336 virtual bool isRenderView() const { return false; } 335 virtual bool isRenderView() const { return false; }
337 virtual bool isVideo() const { return false; } 336 virtual bool isVideo() const { return false; }
338 virtual bool isWidget() const { return false; } 337 virtual bool isWidget() const { return false; }
339 338
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 void showTree(const blink::RenderObject*); 1334 void showTree(const blink::RenderObject*);
1336 void showLineTree(const blink::RenderObject*); 1335 void showLineTree(const blink::RenderObject*);
1337 void showRenderTree(const blink::RenderObject* object1); 1336 void showRenderTree(const blink::RenderObject* object1);
1338 // We don't make object2 an optional parameter so that showRenderTree 1337 // We don't make object2 an optional parameter so that showRenderTree
1339 // can be called from gdb easily. 1338 // can be called from gdb easily.
1340 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1339 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1341 1340
1342 #endif 1341 #endif
1343 1342
1344 #endif // RenderObject_h 1343 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/public/platform/WebFallbackThemeEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698