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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp

Issue 2804753005: Rewrite references to "wtf/" to "platform/wtf/" in bindings. (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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 12 matching lines...) Expand all
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "bindings/core/v8/V8GCController.h" 31 #include "bindings/core/v8/V8GCController.h"
32 32
33 #include <algorithm>
34 #include <unordered_map>
35 #include <unordered_set>
33 #include "bindings/core/v8/ActiveScriptWrappable.h" 36 #include "bindings/core/v8/ActiveScriptWrappable.h"
34 #include "bindings/core/v8/RetainedDOMInfo.h" 37 #include "bindings/core/v8/RetainedDOMInfo.h"
35 #include "bindings/core/v8/ScriptWrappableVisitor.h" 38 #include "bindings/core/v8/ScriptWrappableVisitor.h"
36 #include "bindings/core/v8/V8AbstractEventListener.h" 39 #include "bindings/core/v8/V8AbstractEventListener.h"
37 #include "bindings/core/v8/V8Binding.h" 40 #include "bindings/core/v8/V8Binding.h"
38 #include "bindings/core/v8/V8Node.h" 41 #include "bindings/core/v8/V8Node.h"
39 #include "bindings/core/v8/V8ScriptRunner.h" 42 #include "bindings/core/v8/V8ScriptRunner.h"
40 #include "bindings/core/v8/WrapperTypeInfo.h" 43 #include "bindings/core/v8/WrapperTypeInfo.h"
41 #include "core/dom/Attr.h" 44 #include "core/dom/Attr.h"
42 #include "core/dom/Element.h" 45 #include "core/dom/Element.h"
43 #include "core/dom/Node.h" 46 #include "core/dom/Node.h"
44 #include "core/html/imports/HTMLImportsController.h" 47 #include "core/html/imports/HTMLImportsController.h"
45 #include "core/inspector/InspectorTraceEvents.h" 48 #include "core/inspector/InspectorTraceEvents.h"
46 #include "platform/Histogram.h" 49 #include "platform/Histogram.h"
47 #include "platform/RuntimeEnabledFeatures.h" 50 #include "platform/RuntimeEnabledFeatures.h"
48 #include "platform/instrumentation/tracing/TraceEvent.h" 51 #include "platform/instrumentation/tracing/TraceEvent.h"
52 #include "platform/wtf/Vector.h"
53 #include "platform/wtf/allocator/Partitions.h"
49 #include "public/platform/BlameContext.h" 54 #include "public/platform/BlameContext.h"
50 #include "public/platform/Platform.h" 55 #include "public/platform/Platform.h"
51 #include "wtf/Vector.h"
52 #include "wtf/allocator/Partitions.h"
53 #include <algorithm>
54 #include <unordered_map>
55 #include <unordered_set>
56 56
57 namespace blink { 57 namespace blink {
58 58
59 Node* V8GCController::opaqueRootForGC(v8::Isolate*, Node* node) { 59 Node* V8GCController::opaqueRootForGC(v8::Isolate*, Node* node) {
60 ASSERT(node); 60 ASSERT(node);
61 if (node->isConnected()) { 61 if (node->isConnected()) {
62 Document& document = node->document(); 62 Document& document = node->document();
63 if (HTMLImportsController* controller = document.importsController()) 63 if (HTMLImportsController* controller = document.importsController())
64 return controller->master(); 64 return controller->master();
65 return &document; 65 return &document;
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 double startTime = WTF::currentTimeMS(); 549 double startTime = WTF::currentTimeMS();
550 v8::HandleScope scope(isolate); 550 v8::HandleScope scope(isolate);
551 PendingActivityVisitor visitor(isolate, executionContext); 551 PendingActivityVisitor visitor(isolate, executionContext);
552 toIsolate(executionContext)->VisitHandlesWithClassIds(&visitor); 552 toIsolate(executionContext)->VisitHandlesWithClassIds(&visitor);
553 scanPendingActivityHistogram.count( 553 scanPendingActivityHistogram.count(
554 static_cast<int>(WTF::currentTimeMS() - startTime)); 554 static_cast<int>(WTF::currentTimeMS() - startTime));
555 return visitor.pendingActivityFound(); 555 return visitor.pendingActivityFound();
556 } 556 }
557 557
558 } // namespace blink 558 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698