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

Unified Diff: Source/platform/PurgeableVector.h

Issue 467193002: Cleanup namespace usage in Source/core/platform/[A-Z]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/platform/PlatformScreen.h ('k') | Source/platform/StorageQuotaCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/platform/PlatformScreen.h ('k') | Source/platform/StorageQuotaCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698