| Index: Source/platform/PurgeableVector.h
|
| diff --git a/Source/platform/PurgeableVector.h b/Source/platform/PurgeableVector.h
|
| index cb3a9a91c3481ace7cc1b8afa5d065d872f9fec3..c1734f85c3afa45f12e575e74c6423297f32ad96 100644
|
| --- a/Source/platform/PurgeableVector.h
|
| +++ b/Source/platform/PurgeableVector.h
|
| @@ -40,10 +40,6 @@ namespace blink {
|
|
|
| class WebDiscardableMemory;
|
|
|
| -} // namespace blink
|
| -
|
| -namespace blink {
|
| -
|
| // A simple vector implementation that supports purgeable memory. The vector is
|
| // already locked at construction and locking uses an internal counter which
|
| // means that N calls to lock() must be followed by N+1 calls to unlock() to
|
| @@ -115,7 +111,7 @@ private:
|
| // Note that there can't be data both in |m_vector| and
|
| // |m_discardable|, i.e. only one of them is used at a given time.
|
| Vector<char> m_vector;
|
| - OwnPtr<blink::WebDiscardableMemory> m_discardable;
|
| + OwnPtr<WebDiscardableMemory> m_discardable;
|
| size_t m_discardableCapacity;
|
| size_t m_discardableSize;
|
| bool m_isPurgeable;
|
|
|