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

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

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 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 3013485f23ca3df24a55d7ef95c519441ad2aeb5..48073c06c12a2ccfe4caf4ac458ead47e415f994 100644
--- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
+++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
@@ -25,16 +25,14 @@
#include "platform/wtf/allocator/Partitions.h"
-using namespace WTF;
-
namespace blink {
void* BidiCharacterRun::operator new(size_t sz) {
- return PartitionAlloc(Partitions::LayoutPartition(), sz,
+ return PartitionAlloc(WTF::Partitions::LayoutPartition(), sz,
WTF_HEAP_PROFILER_TYPE_NAME(BidiCharacterRun));
}
void BidiCharacterRun::operator delete(void* ptr) {
- PartitionFree(ptr);
+ WTF::PartitionFree(ptr);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698