Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / TestingPlatformSupport.cpp
index 3000c38..7944c63 100644 (file)
@@ -65,17 +65,17 @@ void TestingDiscardableMemory::unlock()
 
 TestingPlatformSupport::TestingPlatformSupport(const Config& config)
     : m_config(config)
-    , m_oldPlatform(blink::Platform::current())
+    , m_oldPlatform(Platform::current())
 {
-    blink::Platform::initialize(this);
+    Platform::initialize(this);
 }
 
 TestingPlatformSupport::~TestingPlatformSupport()
 {
-    blink::Platform::initialize(m_oldPlatform);
+    Platform::initialize(m_oldPlatform);
 }
 
-blink::WebDiscardableMemory* TestingPlatformSupport::allocateAndLockDiscardableMemory(size_t bytes)
+WebDiscardableMemory* TestingPlatformSupport::allocateAndLockDiscardableMemory(size_t bytes)
 {
     return !m_config.hasDiscardableMemorySupport ? 0 : new TestingDiscardableMemory(bytes);
 }