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

Side by Side Diff: sky/engine/core/dom/Element.cpp

Issue 758843004: Delete most of rendering/compositing. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "sky/engine/core/html/HTMLElement.h" 75 #include "sky/engine/core/html/HTMLElement.h"
76 #include "sky/engine/core/html/HTMLTemplateElement.h" 76 #include "sky/engine/core/html/HTMLTemplateElement.h"
77 #include "sky/engine/core/html/parser/HTMLDocumentParser.h" 77 #include "sky/engine/core/html/parser/HTMLDocumentParser.h"
78 #include "sky/engine/core/html/parser/HTMLParserIdioms.h" 78 #include "sky/engine/core/html/parser/HTMLParserIdioms.h"
79 #include "sky/engine/core/page/Chrome.h" 79 #include "sky/engine/core/page/Chrome.h"
80 #include "sky/engine/core/page/ChromeClient.h" 80 #include "sky/engine/core/page/ChromeClient.h"
81 #include "sky/engine/core/page/FocusController.h" 81 #include "sky/engine/core/page/FocusController.h"
82 #include "sky/engine/core/page/Page.h" 82 #include "sky/engine/core/page/Page.h"
83 #include "sky/engine/core/rendering/RenderLayer.h" 83 #include "sky/engine/core/rendering/RenderLayer.h"
84 #include "sky/engine/core/rendering/RenderView.h" 84 #include "sky/engine/core/rendering/RenderView.h"
85 #include "sky/engine/core/rendering/compositing/RenderLayerCompositor.h"
86 #include "sky/engine/platform/EventDispatchForbiddenScope.h" 85 #include "sky/engine/platform/EventDispatchForbiddenScope.h"
87 #include "sky/engine/platform/UserGestureIndicator.h" 86 #include "sky/engine/platform/UserGestureIndicator.h"
88 #include "sky/engine/platform/scroll/ScrollableArea.h" 87 #include "sky/engine/platform/scroll/ScrollableArea.h"
89 #include "sky/engine/wtf/BitVector.h" 88 #include "sky/engine/wtf/BitVector.h"
90 #include "sky/engine/wtf/HashFunctions.h" 89 #include "sky/engine/wtf/HashFunctions.h"
91 #include "sky/engine/wtf/text/CString.h" 90 #include "sky/engine/wtf/text/CString.h"
92 #include "sky/engine/wtf/text/StringBuilder.h" 91 #include "sky/engine/wtf/text/StringBuilder.h"
93 #include "sky/engine/wtf/text/TextPosition.h" 92 #include "sky/engine/wtf/text/TextPosition.h"
94 93
95 namespace blink { 94 namespace blink {
(...skipping 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after
1788 return false; 1787 return false;
1789 // Turn off style sharing for elements that can gain layers for reasons outs ide of the style system. 1788 // Turn off style sharing for elements that can gain layers for reasons outs ide of the style system.
1790 // See comments in RenderObject::setStyle(). 1789 // See comments in RenderObject::setStyle().
1791 // FIXME: Why does gaining a layer from outside the style system require dis abling sharing? 1790 // FIXME: Why does gaining a layer from outside the style system require dis abling sharing?
1792 if (isHTMLCanvasElement(*this)) 1791 if (isHTMLCanvasElement(*this))
1793 return false; 1792 return false;
1794 return true; 1793 return true;
1795 } 1794 }
1796 1795
1797 } // namespace blink 1796 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698