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

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

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "core/html/PluginDocument.h" 49 #include "core/html/PluginDocument.h"
50 #include "core/html/TextDocument.h" 50 #include "core/html/TextDocument.h"
51 #include "core/html/media/MediaDocument.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 "platform/wtf/StdLibExtras.h"
60 60
61 namespace blink { 61 namespace blink {
62 62
63 DOMImplementation::DOMImplementation(Document& document) 63 DOMImplementation::DOMImplementation(Document& document)
64 : document_(document) {} 64 : document_(document) {}
65 65
66 DocumentType* DOMImplementation::createDocumentType( 66 DocumentType* DOMImplementation::createDocumentType(
67 const AtomicString& qualified_name, 67 const AtomicString& qualified_name,
68 const String& public_id, 68 const String& public_id,
69 const String& system_id, 69 const String& system_id,
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 return XMLDocument::Create(init); 282 return XMLDocument::Create(init);
283 283
284 return HTMLDocument::Create(init); 284 return HTMLDocument::Create(init);
285 } 285 }
286 286
287 DEFINE_TRACE(DOMImplementation) { 287 DEFINE_TRACE(DOMImplementation) {
288 visitor->Trace(document_); 288 visitor->Trace(document_);
289 } 289 }
290 290
291 } // namespace blink 291 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMException.h ('k') | third_party/WebKit/Source/core/dom/DOMImplementationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698