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

Unified Diff: Source/core/Init.cpp

Issue 1041103002: PartitionAlloc: Centralize Partition allocators into one place (Part 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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: Source/core/Init.cpp
diff --git a/Source/core/Init.cpp b/Source/core/Init.cpp
index 11b27d357b054e72178949581c0a9ee71a31cafd..65983e0bcebf3d98f2b5bc1abb16a8e1cb6dde9d 100644
--- a/Source/core/Init.cpp
+++ b/Source/core/Init.cpp
@@ -54,9 +54,9 @@
#include "core/workers/WorkerThread.h"
#include "platform/EventTracer.h"
#include "platform/FontFamilyNames.h"
-#include "platform/Partitions.h"
#include "platform/PlatformThreadData.h"
#include "platform/weborigin/KURL.h"
+#include "wtf/Partitions.h"
#include "wtf/text/StringStatics.h"
namespace blink {
@@ -103,7 +103,7 @@ void CoreInitializer::init()
StyleChangeExtraData::init();
QualifiedName::init();
- Partitions::init();
+ WTF::Partitions::initialize();
EventTracer::initialize();
KURL::initialize();
@@ -127,7 +127,7 @@ void CoreInitializer::shutdown()
// cleared.
HTMLParserThread::shutdown();
- Partitions::shutdown();
+ WTF::Partitions::shutdown();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698