Index: Source/platform/TestingPlatformSupport.h |
diff --git a/Source/platform/TestingPlatformSupport.h b/Source/platform/TestingPlatformSupport.h |
index f51658071b81a6ba288822a74ad644d57c42de93..6ad7e7a64faec41dbd5fe6615c16bb95e9d0d596 100644 |
--- a/Source/platform/TestingPlatformSupport.h |
+++ b/Source/platform/TestingPlatformSupport.h |
@@ -37,12 +37,12 @@ |
namespace blink { |
-class TestingDiscardableMemory : public blink::WebDiscardableMemory { |
+class TestingDiscardableMemory : public WebDiscardableMemory { |
public: |
explicit TestingDiscardableMemory(size_t); |
virtual ~TestingDiscardableMemory(); |
- // blink::WebDiscardableMemory: |
+ // WebDiscardableMemory: |
virtual bool lock() OVERRIDE; |
virtual void* data() OVERRIDE; |
virtual void unlock() OVERRIDE; |
@@ -52,7 +52,7 @@ private: |
bool m_isLocked; |
}; |
-class TestingPlatformSupport : public blink::Platform { |
+class TestingPlatformSupport : public Platform { |
public: |
struct Config { |
Config() : hasDiscardableMemorySupport(false) { } |
@@ -64,14 +64,14 @@ public: |
virtual ~TestingPlatformSupport(); |
- // blink::Platform: |
- virtual blink::WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) OVERRIDE; |
+ // Platform: |
+ virtual WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) OVERRIDE; |
virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) OVERRIDE; |
virtual const unsigned char* getTraceCategoryEnabledFlag(const char* categoryName) OVERRIDE; |
private: |
const Config m_config; |
- blink::Platform* const m_oldPlatform; |
+ Platform* const m_oldPlatform; |
}; |
} // namespace blink |