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

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

Issue 1680503002: Tidy up inclusion of WebScheduler.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/Resource.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 * (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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 #include "platform/network/HTTPParsers.h" 211 #include "platform/network/HTTPParsers.h"
212 #include "platform/scheduler/CancellableTaskFactory.h" 212 #include "platform/scheduler/CancellableTaskFactory.h"
213 #include "platform/scroll/ScrollbarTheme.h" 213 #include "platform/scroll/ScrollbarTheme.h"
214 #include "platform/text/PlatformLocale.h" 214 #include "platform/text/PlatformLocale.h"
215 #include "platform/text/SegmentedString.h" 215 #include "platform/text/SegmentedString.h"
216 #include "platform/weborigin/OriginAccessEntry.h" 216 #include "platform/weborigin/OriginAccessEntry.h"
217 #include "platform/weborigin/SchemeRegistry.h" 217 #include "platform/weborigin/SchemeRegistry.h"
218 #include "platform/weborigin/SecurityOrigin.h" 218 #include "platform/weborigin/SecurityOrigin.h"
219 #include "public/platform/Platform.h" 219 #include "public/platform/Platform.h"
220 #include "public/platform/WebFrameScheduler.h" 220 #include "public/platform/WebFrameScheduler.h"
221 #include "public/platform/WebScheduler.h"
221 #include "wtf/CurrentTime.h" 222 #include "wtf/CurrentTime.h"
222 #include "wtf/DateMath.h" 223 #include "wtf/DateMath.h"
223 #include "wtf/Functional.h" 224 #include "wtf/Functional.h"
224 #include "wtf/HashFunctions.h" 225 #include "wtf/HashFunctions.h"
225 #include "wtf/MainThread.h" 226 #include "wtf/MainThread.h"
226 #include "wtf/StdLibExtras.h" 227 #include "wtf/StdLibExtras.h"
227 #include "wtf/TemporaryChange.h" 228 #include "wtf/TemporaryChange.h"
228 #include "wtf/text/StringBuffer.h" 229 #include "wtf/text/StringBuffer.h"
229 #include "wtf/text/TextEncodingRegistry.h" 230 #include "wtf/text/TextEncodingRegistry.h"
230 231
(...skipping 5703 matching lines...) Expand 10 before | Expand all | Expand 10 after
5934 #ifndef NDEBUG 5935 #ifndef NDEBUG
5935 using namespace blink; 5936 using namespace blink;
5936 void showLiveDocumentInstances() 5937 void showLiveDocumentInstances()
5937 { 5938 {
5938 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 5939 Document::WeakDocumentSet& set = Document::liveDocumentSet();
5939 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5940 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5940 for (Document* document : set) 5941 for (Document* document : set)
5941 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5942 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5942 } 5943 }
5943 #endif 5944 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/Resource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698