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

Side by Side Diff: third_party/WebKit/Source/core/dom/DOMImplementation.cpp

Issue 2780403004: Create core/html/media/ and move auxiliary media files in it. (Closed)
Patch Set: actually add autoplay files Created 3 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
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 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Samuel Weinig (sam@webkit.org) 6 * Copyright (C) 2006 Samuel Weinig (sam@webkit.org)
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
8 * (http://www.torchmobile.com/) 8 * (http://www.torchmobile.com/)
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 28 matching lines...) Expand all
39 #include "core/dom/XMLDocument.h" 39 #include "core/dom/XMLDocument.h"
40 #include "core/dom/custom/V0CustomElementRegistrationContext.h" 40 #include "core/dom/custom/V0CustomElementRegistrationContext.h"
41 #include "core/frame/LocalFrame.h" 41 #include "core/frame/LocalFrame.h"
42 #include "core/frame/UseCounter.h" 42 #include "core/frame/UseCounter.h"
43 #include "core/html/HTMLDocument.h" 43 #include "core/html/HTMLDocument.h"
44 #include "core/html/HTMLHeadElement.h" 44 #include "core/html/HTMLHeadElement.h"
45 #include "core/html/HTMLMediaElement.h" 45 #include "core/html/HTMLMediaElement.h"
46 #include "core/html/HTMLTitleElement.h" 46 #include "core/html/HTMLTitleElement.h"
47 #include "core/html/HTMLViewSourceDocument.h" 47 #include "core/html/HTMLViewSourceDocument.h"
48 #include "core/html/ImageDocument.h" 48 #include "core/html/ImageDocument.h"
49 #include "core/html/MediaDocument.h"
50 #include "core/html/PluginDocument.h" 49 #include "core/html/PluginDocument.h"
51 #include "core/html/TextDocument.h" 50 #include "core/html/TextDocument.h"
51 #include "core/html/media/MediaDocument.h"
52 #include "core/loader/FrameLoader.h" 52 #include "core/loader/FrameLoader.h"
53 #include "core/page/Page.h" 53 #include "core/page/Page.h"
54 #include "platform/graphics/Image.h" 54 #include "platform/graphics/Image.h"
55 #include "platform/network/mime/ContentType.h" 55 #include "platform/network/mime/ContentType.h"
56 #include "platform/network/mime/MIMETypeRegistry.h" 56 #include "platform/network/mime/MIMETypeRegistry.h"
57 #include "platform/plugins/PluginData.h" 57 #include "platform/plugins/PluginData.h"
58 #include "platform/weborigin/SecurityOrigin.h" 58 #include "platform/weborigin/SecurityOrigin.h"
59 #include "wtf/StdLibExtras.h" 59 #include "wtf/StdLibExtras.h"
60 60
61 namespace blink { 61 namespace blink {
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 return XMLDocument::create(init); 276 return XMLDocument::create(init);
277 277
278 return HTMLDocument::create(init); 278 return HTMLDocument::create(init);
279 } 279 }
280 280
281 DEFINE_TRACE(DOMImplementation) { 281 DEFINE_TRACE(DOMImplementation) {
282 visitor->trace(m_document); 282 visitor->trace(m_document);
283 } 283 }
284 284
285 } // namespace blink 285 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698