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

Issue 2795923002: Rewrite references to "wtf/" to "platform/wtf/" in platform/heap. (Closed)

Created:
3 years, 8 months ago by Yuta Kitamura
Modified:
3 years, 8 months ago
Reviewers:
oilpan-reviews, haraken
CC:
chromium-reviews, oilpan-reviews, Mads Ager (chromium), blink-reviews, kinuko+watch, kouhei+heap_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Rewrite references to "wtf/" to "platform/wtf/" in platform/heap. This is essentially the result of the following shell command followed by git cl format. find . -type f -exec sed -i 's/"wtf\//"platform\/wtf\//g' {} \; DEPS is updated, too, in order to prevent further introduction of "wtf/". BUG=691465 Review-Url: https://codereview.chromium.org/2795923002 Cr-Commit-Position: refs/heads/master@{#461647} Committed: https://chromium.googlesource.com/chromium/src/+/be4aafe5cf2c03d863ed96d7fc3d3e6b66a86d0f

Patch Set 1 #

Patch Set 2 : Same as PS1; PS1 lacks some files for some reason. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+173 lines, -170 lines) Patch
M third_party/WebKit/Source/platform/heap/BlinkGC.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/BlinkGCMemoryDumpProvider.h View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/BlinkGCMemoryDumpProvider.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/BlinkGCMemoryDumpProviderTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/CallbackStack.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/CallbackStack.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/DEPS View 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/GCInfo.h View 1 chunk +12 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/GCTaskRunner.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/GarbageCollected.h View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Handle.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Heap.h View 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Heap.cpp View 2 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapAllocator.h View 1 chunk +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapCompact.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapCompact.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapCompactTest.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapLinkedStack.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapPage.h View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapPage.cpp View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapTerminatedArray.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapTest.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Member.h View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/PageMemory.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/PageMemory.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/PagePool.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/PagePool.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/Persistent.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/PersistentNode.h View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/SafePoint.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/SelfKeepAlive.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/SparseHeapBitmap.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/SparseHeapBitmap.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/StackFrameDepth.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/StackFrameDepth.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/ThreadState.h View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/ThreadState.cpp View 2 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/ThreadingTraits.h View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/TraceTraits.h View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Visitor.h View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Visitor.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/VisitorImpl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/WrapperVisitor.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 16 (12 generated)
Yuta Kitamura
PTAL?
3 years, 8 months ago (2017-04-04 02:37:21 UTC) #8
haraken
LGTM
3 years, 8 months ago (2017-04-04 02:41:29 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2795923002/20001
3 years, 8 months ago (2017-04-04 05:56:21 UTC) #13
commit-bot: I haz the power
3 years, 8 months ago (2017-04-04 06:53:31 UTC) #16
Message was sent while issue was closed.
Committed patchset #2 (id:20001) as
https://chromium.googlesource.com/chromium/src/+/be4aafe5cf2c03d863ed96d7fc3d...

Powered by Google App Engine
This is Rietveld 408576698