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: Source/core/dom/Node.cpp

Issue 13851012: Absolutify paths in core/storage. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/inspector/InjectedScriptHost.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 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 11 matching lines...) Expand all
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 #include "Node.h" 26 #include "Node.h"
27 27
28 #include "AXObjectCache.h" 28 #include "AXObjectCache.h"
29 #include "Attr.h" 29 #include "Attr.h"
30 #include "Attribute.h" 30 #include "Attribute.h"
31 #include "BeforeLoadEvent.h" 31 #include "BeforeLoadEvent.h"
32 #include "ChildListMutationScope.h"
33 #include "Chrome.h"
34 #include "ChromeClient.h"
35 #include "CSSParser.h" 32 #include "CSSParser.h"
36 #include "CSSRule.h" 33 #include "CSSRule.h"
37 #include "CSSSelector.h" 34 #include "CSSSelector.h"
38 #include "CSSSelectorList.h" 35 #include "CSSSelectorList.h"
39 #include "CSSStyleRule.h" 36 #include "CSSStyleRule.h"
40 #include "CSSStyleSheet.h" 37 #include "CSSStyleSheet.h"
38 #include "ChildListMutationScope.h"
41 #include "ChildNodeList.h" 39 #include "ChildNodeList.h"
40 #include "Chrome.h"
41 #include "ChromeClient.h"
42 #include "ClassNodeList.h" 42 #include "ClassNodeList.h"
43 #include "ContainerNodeAlgorithms.h" 43 #include "ContainerNodeAlgorithms.h"
44 #include "ContextMenuController.h" 44 #include "ContextMenuController.h"
45 #include "DOMImplementation.h" 45 #include "DOMImplementation.h"
46 #include "DOMSettableTokenList.h" 46 #include "DOMSettableTokenList.h"
47 #include "Document.h" 47 #include "Document.h"
48 #include "DocumentFragment.h" 48 #include "DocumentFragment.h"
49 #include "DocumentType.h" 49 #include "DocumentType.h"
50 #include "Element.h" 50 #include "Element.h"
51 #include "ElementRareData.h" 51 #include "ElementRareData.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #include "RegisteredEventListener.h" 90 #include "RegisteredEventListener.h"
91 #include "RenderBlock.h" 91 #include "RenderBlock.h"
92 #include "RenderBox.h" 92 #include "RenderBox.h"
93 #include "RenderTextControl.h" 93 #include "RenderTextControl.h"
94 #include "RenderView.h" 94 #include "RenderView.h"
95 #include "ScopedEventQueue.h" 95 #include "ScopedEventQueue.h"
96 #include "SelectorQuery.h" 96 #include "SelectorQuery.h"
97 #include "Settings.h" 97 #include "Settings.h"
98 #include "ShadowRoot.h" 98 #include "ShadowRoot.h"
99 #include "StaticNodeList.h" 99 #include "StaticNodeList.h"
100 #include "StorageEvent.h"
101 #include "StyleResolver.h" 100 #include "StyleResolver.h"
102 #include "TagNodeList.h" 101 #include "TagNodeList.h"
103 #include "TemplateContentDocumentFragment.h" 102 #include "TemplateContentDocumentFragment.h"
104 #include "Text.h" 103 #include "Text.h"
105 #include "TextEvent.h" 104 #include "TextEvent.h"
106 #include "TouchEvent.h" 105 #include "TouchEvent.h"
107 #include "TreeScopeAdopter.h" 106 #include "TreeScopeAdopter.h"
108 #include "UIEvent.h" 107 #include "UIEvent.h"
109 #include "UIEventWithKeyState.h" 108 #include "UIEventWithKeyState.h"
110 #include "UserActionElementSet.h" 109 #include "UserActionElementSet.h"
111 #include "WebCoreMemoryInstrumentation.h" 110 #include "WebCoreMemoryInstrumentation.h"
112 #include "WheelEvent.h" 111 #include "WheelEvent.h"
113 #include "WindowEventContext.h" 112 #include "WindowEventContext.h"
114 #include "XMLNames.h" 113 #include "XMLNames.h"
114 #include "core/storage/StorageEvent.h"
115 #include "htmlediting.h" 115 #include "htmlediting.h"
116 #include <wtf/HashSet.h> 116 #include <wtf/HashSet.h>
117 #include <wtf/PassOwnPtr.h> 117 #include <wtf/PassOwnPtr.h>
118 #include <wtf/RefCountedLeakCounter.h> 118 #include <wtf/RefCountedLeakCounter.h>
119 #include <wtf/text/CString.h>
120 #include <wtf/text/StringBuilder.h>
119 #include <wtf/UnusedParam.h> 121 #include <wtf/UnusedParam.h>
120 #include <wtf/Vector.h> 122 #include <wtf/Vector.h>
121 #include <wtf/text/CString.h>
122 #include <wtf/text/StringBuilder.h>
123 123
124 #ifndef NDEBUG 124 #ifndef NDEBUG
125 #include "RenderLayer.h" 125 #include "RenderLayer.h"
126 #endif 126 #endif
127 127
128 using namespace std; 128 using namespace std;
129 129
130 namespace WebCore { 130 namespace WebCore {
131 131
132 using namespace HTMLNames; 132 using namespace HTMLNames;
(...skipping 2603 matching lines...) Expand 10 before | Expand all | Expand 10 after
2736 node->showTreeForThis(); 2736 node->showTreeForThis();
2737 } 2737 }
2738 2738
2739 void showNodePath(const WebCore::Node* node) 2739 void showNodePath(const WebCore::Node* node)
2740 { 2740 {
2741 if (node) 2741 if (node)
2742 node->showNodePathForThis(); 2742 node->showNodePathForThis();
2743 } 2743 }
2744 2744
2745 #endif 2745 #endif
OLDNEW
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698