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

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

Issue 2264543002: Move createCrossThreadTask to ExecutionContextTask.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 4 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "core/css/parser/CSSParser.h" 60 #include "core/css/parser/CSSParser.h"
61 #include "core/css/resolver/FontBuilder.h" 61 #include "core/css/resolver/FontBuilder.h"
62 #include "core/css/resolver/StyleResolver.h" 62 #include "core/css/resolver/StyleResolver.h"
63 #include "core/css/resolver/StyleResolverStats.h" 63 #include "core/css/resolver/StyleResolverStats.h"
64 #include "core/dom/AXObjectCache.h" 64 #include "core/dom/AXObjectCache.h"
65 #include "core/dom/Attr.h" 65 #include "core/dom/Attr.h"
66 #include "core/dom/CDATASection.h" 66 #include "core/dom/CDATASection.h"
67 #include "core/dom/ClientRect.h" 67 #include "core/dom/ClientRect.h"
68 #include "core/dom/Comment.h" 68 #include "core/dom/Comment.h"
69 #include "core/dom/ContextFeatures.h" 69 #include "core/dom/ContextFeatures.h"
70 #include "core/dom/CrossThreadTask.h"
71 #include "core/dom/DOMImplementation.h" 70 #include "core/dom/DOMImplementation.h"
72 #include "core/dom/DocumentFragment.h" 71 #include "core/dom/DocumentFragment.h"
73 #include "core/dom/DocumentParserTiming.h" 72 #include "core/dom/DocumentParserTiming.h"
74 #include "core/dom/DocumentType.h" 73 #include "core/dom/DocumentType.h"
75 #include "core/dom/Element.h" 74 #include "core/dom/Element.h"
76 #include "core/dom/ElementDataCache.h" 75 #include "core/dom/ElementDataCache.h"
77 #include "core/dom/ElementRegistrationOptions.h" 76 #include "core/dom/ElementRegistrationOptions.h"
78 #include "core/dom/ElementTraversal.h" 77 #include "core/dom/ElementTraversal.h"
79 #include "core/dom/ExceptionCode.h" 78 #include "core/dom/ExceptionCode.h"
80 #include "core/dom/ExecutionContextTask.h" 79 #include "core/dom/ExecutionContextTask.h"
(...skipping 5959 matching lines...) Expand 10 before | Expand all | Expand 10 after
6040 } 6039 }
6041 6040
6042 void showLiveDocumentInstances() 6041 void showLiveDocumentInstances()
6043 { 6042 {
6044 WeakDocumentSet& set = liveDocumentSet(); 6043 WeakDocumentSet& set = liveDocumentSet();
6045 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6044 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6046 for (Document* document : set) 6045 for (Document* document : set)
6047 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6046 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6048 } 6047 }
6049 #endif 6048 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698