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

Unified Diff: third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp

Issue 2614883006: Change PartitionAlloc to Chromium naming style. (Closed)
Patch Set: Rebase and fix some names. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
diff --git a/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp b/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
index 18c1ed594347279c92474314ed8714ca3ead0f51..9d7fb1882bfef3d4eaf8a3468e219ae3321ed4c2 100644
--- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
+++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
@@ -29,12 +29,12 @@ using namespace WTF;
namespace blink {
void* BidiCharacterRun::operator new(size_t sz) {
- return partitionAlloc(Partitions::layoutPartition(), sz,
+ return PartitionAlloc(Partitions::layoutPartition(), sz,
WTF_HEAP_PROFILER_TYPE_NAME(BidiCharacterRun));
}
void BidiCharacterRun::operator delete(void* ptr) {
- partitionFree(ptr);
+ PartitionFree(ptr);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/heap/PageMemory.cpp ('k') | third_party/WebKit/Source/web/WebMemoryStatistics.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698