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

Unified Diff: components/discardable_memory/common/discardable_shared_memory_heap.h

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error Created 4 years, 1 month 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: components/discardable_memory/common/discardable_shared_memory_heap.h
diff --git a/content/common/discardable_shared_memory_heap.h b/components/discardable_memory/common/discardable_shared_memory_heap.h
similarity index 92%
rename from content/common/discardable_shared_memory_heap.h
rename to components/discardable_memory/common/discardable_shared_memory_heap.h
index 6df1a16e76f4c5a6f54d2b8821649b43e90bcee5..e49ed14ac0f29a6bb488678375bd0a89de96865f 100644
--- a/content/common/discardable_shared_memory_heap.h
+++ b/components/discardable_memory/common/discardable_shared_memory_heap.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_
-#define CONTENT_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_
+#ifndef COMPONENTS_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_
+#define COMPONENTS_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_
#include <stddef.h>
#include <stdint.h>
@@ -16,19 +16,19 @@
#include "base/macros.h"
#include "base/memory/scoped_vector.h"
#include "base/trace_event/process_memory_dump.h"
-#include "content/common/content_export.h"
+#include "components/discardable_memory/common/discardable_memory_export.h"
namespace base {
class DiscardableSharedMemory;
}
-namespace content {
+namespace discardable_memory {
// Implements a heap of discardable shared memory. An array of free lists
// is used to keep track of free blocks.
-class CONTENT_EXPORT DiscardableSharedMemoryHeap {
+class DISCARDABLE_MEMORY_EXPORT DiscardableSharedMemoryHeap {
public:
- class CONTENT_EXPORT Span : public base::LinkNode<Span> {
+ class DISCARDABLE_MEMORY_EXPORT Span : public base::LinkNode<Span> {
public:
~Span();
@@ -181,6 +181,6 @@ class CONTENT_EXPORT DiscardableSharedMemoryHeap {
DISALLOW_COPY_AND_ASSIGN(DiscardableSharedMemoryHeap);
};
-} // namespace content
+} // namespace discardable_memory
-#endif // CONTENT_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_
+#endif // COMPONENTS_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_SHARED_MEMORY_HEAP_H_

Powered by Google App Engine
This is Rietveld 408576698