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

Unified Diff: Source/platform/heap/Heap.h

Issue 232723002: Revert of [Oilpan]: Moving the FontSelector/FontCacheClient, CSSSegmentedFontFace... (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/fonts/FontFallbackList.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index 9e494538c5b81738332f4f83594f5023d45f9313..625573c5915ebd1b92d352861d166aa0e69f5478 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -878,18 +878,7 @@
// For now direct allocation of arrays on the heap is not allowed.
void* operator new[](size_t size);
-#if OS(WIN) && COMPILER(MSVC)
- // Due to some quirkiness in the MSVC compiler we have to provide
- // the delete[] operator in the GarbageCollected subclasses as it
- // is called when a class is exported in a DLL.
-protected:
- void operator delete[](void* p)
- {
- ASSERT_NOT_REACHED();
- }
-#else
void operator delete[](void* p);
-#endif
public:
typedef T GarbageCollectedBase;
« no previous file with comments | « Source/platform/fonts/FontFallbackList.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698