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

Side by Side Diff: sky/engine/core/dom/Node.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/Element.cpp ('k') | sky/engine/core/dom/Range.h » ('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 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include "sky/engine/core/dom/StaticNodeList.h" 48 #include "sky/engine/core/dom/StaticNodeList.h"
49 #include "sky/engine/core/dom/TemplateContentDocumentFragment.h" 49 #include "sky/engine/core/dom/TemplateContentDocumentFragment.h"
50 #include "sky/engine/core/dom/Text.h" 50 #include "sky/engine/core/dom/Text.h"
51 #include "sky/engine/core/dom/TreeScopeAdopter.h" 51 #include "sky/engine/core/dom/TreeScopeAdopter.h"
52 #include "sky/engine/core/dom/UserActionElementSet.h" 52 #include "sky/engine/core/dom/UserActionElementSet.h"
53 #include "sky/engine/core/dom/WeakNodeMap.h" 53 #include "sky/engine/core/dom/WeakNodeMap.h"
54 #include "sky/engine/core/dom/shadow/ElementShadow.h" 54 #include "sky/engine/core/dom/shadow/ElementShadow.h"
55 #include "sky/engine/core/dom/shadow/InsertionPoint.h" 55 #include "sky/engine/core/dom/shadow/InsertionPoint.h"
56 #include "sky/engine/core/dom/shadow/ShadowRoot.h" 56 #include "sky/engine/core/dom/shadow/ShadowRoot.h"
57 #include "sky/engine/core/editing/htmlediting.h" 57 #include "sky/engine/core/editing/htmlediting.h"
58 #include "sky/engine/core/editing/markup.h"
59 #include "sky/engine/core/events/Event.h" 58 #include "sky/engine/core/events/Event.h"
60 #include "sky/engine/core/events/EventDispatchMediator.h" 59 #include "sky/engine/core/events/EventDispatchMediator.h"
61 #include "sky/engine/core/events/EventDispatcher.h" 60 #include "sky/engine/core/events/EventDispatcher.h"
62 #include "sky/engine/core/events/EventListener.h" 61 #include "sky/engine/core/events/EventListener.h"
63 #include "sky/engine/core/events/GestureEvent.h" 62 #include "sky/engine/core/events/GestureEvent.h"
64 #include "sky/engine/core/events/KeyboardEvent.h" 63 #include "sky/engine/core/events/KeyboardEvent.h"
65 #include "sky/engine/core/events/MouseEvent.h" 64 #include "sky/engine/core/events/MouseEvent.h"
66 #include "sky/engine/core/events/TextEvent.h" 65 #include "sky/engine/core/events/TextEvent.h"
67 #include "sky/engine/core/events/TouchEvent.h" 66 #include "sky/engine/core/events/TouchEvent.h"
68 #include "sky/engine/core/events/UIEvent.h" 67 #include "sky/engine/core/events/UIEvent.h"
(...skipping 1755 matching lines...) Expand 10 before | Expand all | Expand 10 after
1824 node->showTreeForThis(); 1823 node->showTreeForThis();
1825 } 1824 }
1826 1825
1827 void showNodePath(const blink::Node* node) 1826 void showNodePath(const blink::Node* node)
1828 { 1827 {
1829 if (node) 1828 if (node)
1830 node->showNodePathForThis(); 1829 node->showNodePathForThis();
1831 } 1830 }
1832 1831
1833 #endif 1832 #endif
OLDNEW
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/dom/Range.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698