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

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

Issue 847803002: Make ScriptStreamer and dependents Oilpan friendly. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add ScriptSourceCode::isNull() comment Created 5 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/core/v8/v8.gypi ('k') | Source/core/dom/PendingScript.h » ('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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 #include "core/editing/SpellChecker.h" 108 #include "core/editing/SpellChecker.h"
109 #include "core/editing/markup.h" 109 #include "core/editing/markup.h"
110 #include "core/events/BeforeUnloadEvent.h" 110 #include "core/events/BeforeUnloadEvent.h"
111 #include "core/events/Event.h" 111 #include "core/events/Event.h"
112 #include "core/events/EventFactory.h" 112 #include "core/events/EventFactory.h"
113 #include "core/events/EventListener.h" 113 #include "core/events/EventListener.h"
114 #include "core/events/HashChangeEvent.h" 114 #include "core/events/HashChangeEvent.h"
115 #include "core/events/PageTransitionEvent.h" 115 #include "core/events/PageTransitionEvent.h"
116 #include "core/events/ScopedEventQueue.h" 116 #include "core/events/ScopedEventQueue.h"
117 #include "core/fetch/ResourceFetcher.h" 117 #include "core/fetch/ResourceFetcher.h"
118 #include "core/frame/DOMTimer.h"
118 #include "core/frame/EventHandlerRegistry.h" 119 #include "core/frame/EventHandlerRegistry.h"
119 #include "core/frame/FrameConsole.h" 120 #include "core/frame/FrameConsole.h"
120 #include "core/frame/FrameHost.h" 121 #include "core/frame/FrameHost.h"
121 #include "core/frame/FrameView.h" 122 #include "core/frame/FrameView.h"
122 #include "core/frame/History.h" 123 #include "core/frame/History.h"
123 #include "core/frame/LocalDOMWindow.h" 124 #include "core/frame/LocalDOMWindow.h"
124 #include "core/frame/LocalFrame.h" 125 #include "core/frame/LocalFrame.h"
125 #include "core/frame/PinchViewport.h" 126 #include "core/frame/PinchViewport.h"
126 #include "core/frame/Settings.h" 127 #include "core/frame/Settings.h"
127 #include "core/frame/csp/ContentSecurityPolicy.h" 128 #include "core/frame/csp/ContentSecurityPolicy.h"
(...skipping 5642 matching lines...) Expand 10 before | Expand all | Expand 10 after
5770 #ifndef NDEBUG 5771 #ifndef NDEBUG
5771 using namespace blink; 5772 using namespace blink;
5772 void showLiveDocumentInstances() 5773 void showLiveDocumentInstances()
5773 { 5774 {
5774 WeakDocumentSet& set = liveDocumentSet(); 5775 WeakDocumentSet& set = liveDocumentSet();
5775 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5776 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5776 for (Document* document : set) 5777 for (Document* document : set)
5777 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5778 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5778 } 5779 }
5779 #endif 5780 #endif
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/v8.gypi ('k') | Source/core/dom/PendingScript.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698