HomeSort by relevance Sort by last modified time
    Searched defs:StorageTracker (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/storage/
StorageTracker.h 45 class StorageTracker {
46 WTF_MAKE_NONCOPYABLE(StorageTracker);
50 static StorageTracker& tracker();
77 StorageTracker(const String& storagePath);
StorageTracker.cpp 27 #include "StorageTracker.h"
49 static StorageTracker* storageTracker = 0;
51 void StorageTracker::initializeTracker(const String& storagePath)
54 ASSERT(!storageTracker);
56 if (!storageTracker)
57 storageTracker = new StorageTracker(storagePath);
59 // Make sure text encoding maps have been built on the main thread, as the StorageTracker thread might try to do it there instead.
64 storageTracker->setIsActive(true)
    [all...]

Completed in 33 milliseconds