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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/resolver/FilterOperationResolver.h ('k') | Source/core/dom/Document.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 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. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.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 29 matching lines...) Expand all
40 #include "core/html/HTMLDocument.h" 40 #include "core/html/HTMLDocument.h"
41 #include "core/html/HTMLMediaElement.h" 41 #include "core/html/HTMLMediaElement.h"
42 #include "core/html/HTMLViewSourceDocument.h" 42 #include "core/html/HTMLViewSourceDocument.h"
43 #include "core/html/ImageDocument.h" 43 #include "core/html/ImageDocument.h"
44 #include "core/html/MediaDocument.h" 44 #include "core/html/MediaDocument.h"
45 #include "core/html/PluginDocument.h" 45 #include "core/html/PluginDocument.h"
46 #include "core/html/TextDocument.h" 46 #include "core/html/TextDocument.h"
47 #include "core/loader/FrameLoader.h" 47 #include "core/loader/FrameLoader.h"
48 #include "core/frame/Frame.h" 48 #include "core/frame/Frame.h"
49 #include "core/page/Page.h" 49 #include "core/page/Page.h"
50 #include "core/platform/graphics/Image.h"
51 #include "core/svg/SVGDocument.h" 50 #include "core/svg/SVGDocument.h"
52 #include "platform/ContentType.h" 51 #include "platform/ContentType.h"
53 #include "platform/MIMETypeRegistry.h" 52 #include "platform/MIMETypeRegistry.h"
53 #include "platform/graphics/Image.h"
54 #include "platform/graphics/media/MediaPlayer.h" 54 #include "platform/graphics/media/MediaPlayer.h"
55 #include "platform/plugins/PluginData.h" 55 #include "platform/plugins/PluginData.h"
56 #include "platform/weborigin/SecurityOrigin.h" 56 #include "platform/weborigin/SecurityOrigin.h"
57 #include "wtf/StdLibExtras.h" 57 #include "wtf/StdLibExtras.h"
58 58
59 namespace WebCore { 59 namespace WebCore {
60 60
61 typedef HashSet<String, CaseFoldingHash> FeatureSet; 61 typedef HashSet<String, CaseFoldingHash> FeatureSet;
62 62
63 static void addString(FeatureSet& set, const char* string) 63 static void addString(FeatureSet& set, const char* string)
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 return TextDocument::create(init); 359 return TextDocument::create(init);
360 if (type == "image/svg+xml") 360 if (type == "image/svg+xml")
361 return SVGDocument::create(init); 361 return SVGDocument::create(init);
362 if (isXMLMIMEType(type)) 362 if (isXMLMIMEType(type))
363 return Document::create(init); 363 return Document::create(init);
364 364
365 return HTMLDocument::create(init); 365 return HTMLDocument::create(init);
366 } 366 }
367 367
368 } 368 }
OLDNEW
« no previous file with comments | « Source/core/css/resolver/FilterOperationResolver.h ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698