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

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

Issue 771933002: Remove dead markup serialization code. (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
« no previous file with comments | « sky/engine/core/dom/Document.cpp ('k') | sky/engine/core/dom/Node.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "sky/engine/core/dom/SelectorQuery.h" 55 #include "sky/engine/core/dom/SelectorQuery.h"
56 #include "sky/engine/core/dom/StyleEngine.h" 56 #include "sky/engine/core/dom/StyleEngine.h"
57 #include "sky/engine/core/dom/Text.h" 57 #include "sky/engine/core/dom/Text.h"
58 #include "sky/engine/core/dom/custom/CustomElement.h" 58 #include "sky/engine/core/dom/custom/CustomElement.h"
59 #include "sky/engine/core/dom/custom/CustomElementRegistrationContext.h" 59 #include "sky/engine/core/dom/custom/CustomElementRegistrationContext.h"
60 #include "sky/engine/core/dom/shadow/InsertionPoint.h" 60 #include "sky/engine/core/dom/shadow/InsertionPoint.h"
61 #include "sky/engine/core/dom/shadow/ShadowRoot.h" 61 #include "sky/engine/core/dom/shadow/ShadowRoot.h"
62 #include "sky/engine/core/editing/FrameSelection.h" 62 #include "sky/engine/core/editing/FrameSelection.h"
63 #include "sky/engine/core/editing/TextIterator.h" 63 #include "sky/engine/core/editing/TextIterator.h"
64 #include "sky/engine/core/editing/htmlediting.h" 64 #include "sky/engine/core/editing/htmlediting.h"
65 #include "sky/engine/core/editing/markup.h"
66 #include "sky/engine/core/events/EventDispatcher.h" 65 #include "sky/engine/core/events/EventDispatcher.h"
67 #include "sky/engine/core/events/FocusEvent.h" 66 #include "sky/engine/core/events/FocusEvent.h"
68 #include "sky/engine/core/frame/FrameView.h" 67 #include "sky/engine/core/frame/FrameView.h"
69 #include "sky/engine/core/frame/LocalFrame.h" 68 #include "sky/engine/core/frame/LocalFrame.h"
70 #include "sky/engine/core/frame/Settings.h" 69 #include "sky/engine/core/frame/Settings.h"
71 #include "sky/engine/core/frame/UseCounter.h" 70 #include "sky/engine/core/frame/UseCounter.h"
72 #include "sky/engine/core/html/ClassList.h" 71 #include "sky/engine/core/html/ClassList.h"
73 #include "sky/engine/core/html/HTMLCanvasElement.h" 72 #include "sky/engine/core/html/HTMLCanvasElement.h"
74 #include "sky/engine/core/html/HTMLDocument.h" 73 #include "sky/engine/core/html/HTMLDocument.h"
75 #include "sky/engine/core/html/HTMLElement.h" 74 #include "sky/engine/core/html/HTMLElement.h"
(...skipping 1705 matching lines...) Expand 10 before | Expand all | Expand 10 after
1781 return false; 1780 return false;
1782 // Turn off style sharing for elements that can gain layers for reasons outs ide of the style system. 1781 // Turn off style sharing for elements that can gain layers for reasons outs ide of the style system.
1783 // See comments in RenderObject::setStyle(). 1782 // See comments in RenderObject::setStyle().
1784 // FIXME: Why does gaining a layer from outside the style system require dis abling sharing? 1783 // FIXME: Why does gaining a layer from outside the style system require dis abling sharing?
1785 if (isHTMLCanvasElement(*this)) 1784 if (isHTMLCanvasElement(*this))
1786 return false; 1785 return false;
1787 return true; 1786 return true;
1788 } 1787 }
1789 1788
1790 } // namespace blink 1789 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/dom/Document.cpp ('k') | sky/engine/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698