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

Side by Side Diff: third_party/WebKit/Source/core/inspector/MainThreadDebugger.cpp

Issue 2817533005: Rewrite references to "wtf/" to "platform/wtf/" in core/inspector. (Closed)
Patch Set: Rebase. 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) 2011 Google Inc. All rights reserved. 2 * Copyright (c) 2011 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "core/inspector/IdentifiersFactory.h" 58 #include "core/inspector/IdentifiersFactory.h"
59 #include "core/inspector/InspectedFrames.h" 59 #include "core/inspector/InspectedFrames.h"
60 #include "core/inspector/InspectorTaskRunner.h" 60 #include "core/inspector/InspectorTaskRunner.h"
61 #include "core/inspector/V8InspectorString.h" 61 #include "core/inspector/V8InspectorString.h"
62 #include "core/page/Page.h" 62 #include "core/page/Page.h"
63 #include "core/timing/MemoryInfo.h" 63 #include "core/timing/MemoryInfo.h"
64 #include "core/workers/MainThreadWorkletGlobalScope.h" 64 #include "core/workers/MainThreadWorkletGlobalScope.h"
65 #include "core/xml/XPathEvaluator.h" 65 #include "core/xml/XPathEvaluator.h"
66 #include "core/xml/XPathResult.h" 66 #include "core/xml/XPathResult.h"
67 #include "platform/UserGestureIndicator.h" 67 #include "platform/UserGestureIndicator.h"
68 #include "wtf/PtrUtil.h" 68 #include "platform/wtf/PtrUtil.h"
69 #include "wtf/ThreadingPrimitives.h" 69 #include "platform/wtf/ThreadingPrimitives.h"
70 #include "wtf/text/StringBuilder.h" 70 #include "platform/wtf/text/StringBuilder.h"
71 71
72 namespace blink { 72 namespace blink {
73 73
74 namespace { 74 namespace {
75 75
76 int FrameId(LocalFrame* frame) { 76 int FrameId(LocalFrame* frame) {
77 ASSERT(frame); 77 ASSERT(frame);
78 return WeakIdentifierMap<LocalFrame>::Identifier(frame); 78 return WeakIdentifierMap<LocalFrame>::Identifier(frame);
79 } 79 }
80 80
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 context, nodes, index++, 465 context, nodes, index++,
466 ToV8(node, info.Holder(), info.GetIsolate())) 466 ToV8(node, info.Holder(), info.GetIsolate()))
467 .FromMaybe(false)) 467 .FromMaybe(false))
468 return; 468 return;
469 } 469 }
470 info.GetReturnValue().Set(nodes); 470 info.GetReturnValue().Set(nodes);
471 } 471 }
472 } 472 }
473 473
474 } // namespace blink 474 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698