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

Unified Diff: Source/core/fetch/CachingCorrectnessTest.cpp

Issue 1052103004: Make test proxy Platform objects provide currentThread(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
Index: Source/core/fetch/CachingCorrectnessTest.cpp
diff --git a/Source/core/fetch/CachingCorrectnessTest.cpp b/Source/core/fetch/CachingCorrectnessTest.cpp
index b729004a7782da1ba3c50864f2a29f05119eb7d0..55793eb383c42d683054373f0c9ffdd1289c704f 100644
--- a/Source/core/fetch/CachingCorrectnessTest.cpp
+++ b/Source/core/fetch/CachingCorrectnessTest.cpp
@@ -124,13 +124,30 @@ private:
// A simple platform that mocks out the clock, for cache freshness testing.
class ProxyPlatform : public blink::Platform {
public:
- ProxyPlatform() : m_elapsedSeconds(0.) { }
+ ProxyPlatform()
+ : m_elapsedSeconds(0.)
+ , m_platform(Platform::current())
+ {
+ }
+
+ ~ProxyPlatform()
+ {
+ blink::Platform::initialize(m_platform);
+ }
void advanceClock(double seconds)
{
m_elapsedSeconds += seconds;
}
+ virtual WebThread* currentThread() override
+ {
+ if (m_platform)
+ return m_platform->currentThread();
+
+ return nullptr;
+ }
+
private:
// From blink::Platform:
virtual double currentTime()
@@ -146,11 +163,12 @@ private:
}
double m_elapsedSeconds;
+
+ Platform* m_platform;
};
virtual void SetUp()
{
- m_savedPlatform = blink::Platform::current();
blink::Platform::initialize(&m_proxyPlatform);
// Save the global memory cache to restore it upon teardown.
@@ -165,11 +183,8 @@ private:
// Yield the ownership of the global memory cache back.
replaceMemoryCacheForTesting(m_globalMemoryCache.release());
-
- blink::Platform::initialize(m_savedPlatform);
}
- blink::Platform* m_savedPlatform;
ProxyPlatform m_proxyPlatform;
OwnPtrWillBePersistent<MemoryCache> m_globalMemoryCache;

Powered by Google App Engine
This is Rietveld 408576698