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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 24246011: Move form-related 78 files to core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/dom/CheckedRadioButtons.cpp ('k') | Source/core/dom/TextEvent.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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 #include "core/dom/TransformSource.h" 99 #include "core/dom/TransformSource.h"
100 #include "core/dom/TreeWalker.h" 100 #include "core/dom/TreeWalker.h"
101 #include "core/dom/UserActionElementSet.h" 101 #include "core/dom/UserActionElementSet.h"
102 #include "core/dom/VisitedLinkState.h" 102 #include "core/dom/VisitedLinkState.h"
103 #include "core/dom/shadow/ElementShadow.h" 103 #include "core/dom/shadow/ElementShadow.h"
104 #include "core/dom/shadow/ShadowRoot.h" 104 #include "core/dom/shadow/ShadowRoot.h"
105 #include "core/editing/Editor.h" 105 #include "core/editing/Editor.h"
106 #include "core/editing/FrameSelection.h" 106 #include "core/editing/FrameSelection.h"
107 #include "core/fetch/ResourceFetcher.h" 107 #include "core/fetch/ResourceFetcher.h"
108 #include "core/fetch/TextResourceDecoder.h" 108 #include "core/fetch/TextResourceDecoder.h"
109 #include "core/html/FormController.h"
110 #include "core/html/HTMLAllCollection.h" 109 #include "core/html/HTMLAllCollection.h"
111 #include "core/html/HTMLAnchorElement.h" 110 #include "core/html/HTMLAnchorElement.h"
112 #include "core/html/HTMLCanvasElement.h" 111 #include "core/html/HTMLCanvasElement.h"
113 #include "core/html/HTMLCollection.h" 112 #include "core/html/HTMLCollection.h"
114 #include "core/html/HTMLDialogElement.h" 113 #include "core/html/HTMLDialogElement.h"
115 #include "core/html/HTMLDocument.h" 114 #include "core/html/HTMLDocument.h"
116 #include "core/html/HTMLFrameOwnerElement.h" 115 #include "core/html/HTMLFrameOwnerElement.h"
117 #include "core/html/HTMLHeadElement.h" 116 #include "core/html/HTMLHeadElement.h"
118 #include "core/html/HTMLHtmlElement.h" 117 #include "core/html/HTMLHtmlElement.h"
119 #include "core/html/HTMLIFrameElement.h" 118 #include "core/html/HTMLIFrameElement.h"
120 #include "core/html/HTMLImport.h" 119 #include "core/html/HTMLImport.h"
121 #include "core/html/HTMLInputElement.h" 120 #include "core/html/HTMLInputElement.h"
122 #include "core/html/HTMLLinkElement.h" 121 #include "core/html/HTMLLinkElement.h"
123 #include "core/html/HTMLNameCollection.h" 122 #include "core/html/HTMLNameCollection.h"
124 #include "core/html/HTMLScriptElement.h" 123 #include "core/html/HTMLScriptElement.h"
125 #include "core/html/HTMLStyleElement.h" 124 #include "core/html/HTMLStyleElement.h"
126 #include "core/html/HTMLTitleElement.h" 125 #include "core/html/HTMLTitleElement.h"
127 #include "core/html/PluginDocument.h" 126 #include "core/html/PluginDocument.h"
127 #include "core/html/forms/FormController.h"
128 #include "core/html/parser/HTMLDocumentParser.h" 128 #include "core/html/parser/HTMLDocumentParser.h"
129 #include "core/html/parser/HTMLParserIdioms.h" 129 #include "core/html/parser/HTMLParserIdioms.h"
130 #include "core/html/parser/NestingLevelIncrementer.h" 130 #include "core/html/parser/NestingLevelIncrementer.h"
131 #include "core/inspector/InspectorCounters.h" 131 #include "core/inspector/InspectorCounters.h"
132 #include "core/inspector/InspectorInstrumentation.h" 132 #include "core/inspector/InspectorInstrumentation.h"
133 #include "core/inspector/ScriptCallStack.h" 133 #include "core/inspector/ScriptCallStack.h"
134 #include "core/loader/CookieJar.h" 134 #include "core/loader/CookieJar.h"
135 #include "core/loader/DocumentLoader.h" 135 #include "core/loader/DocumentLoader.h"
136 #include "core/loader/FrameLoader.h" 136 #include "core/loader/FrameLoader.h"
137 #include "core/loader/FrameLoaderClient.h" 137 #include "core/loader/FrameLoaderClient.h"
(...skipping 5243 matching lines...) Expand 10 before | Expand all | Expand 10 after
5381 { 5381 {
5382 return DocumentLifecycleNotifier::create(this); 5382 return DocumentLifecycleNotifier::create(this);
5383 } 5383 }
5384 5384
5385 DocumentLifecycleNotifier* Document::lifecycleNotifier() 5385 DocumentLifecycleNotifier* Document::lifecycleNotifier()
5386 { 5386 {
5387 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier()); 5387 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier());
5388 } 5388 }
5389 5389
5390 } // namespace WebCore 5390 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/CheckedRadioButtons.cpp ('k') | Source/core/dom/TextEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698