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

Unified Diff: src/base/accounting-allocator.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 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 | « src/ast/variables.h ('k') | src/base/accounting-allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/accounting-allocator.h
diff --git a/src/base/accounting-allocator.h b/src/base/accounting-allocator.h
deleted file mode 100644
index 4e1baf18d4d57a37510f98ae4fa10d65a7c9f7ae..0000000000000000000000000000000000000000
--- a/src/base/accounting-allocator.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8_BASE_ACCOUNTING_ALLOCATOR_H_
-#define V8_BASE_ACCOUNTING_ALLOCATOR_H_
-
-#include "src/base/atomicops.h"
-#include "src/base/macros.h"
-
-namespace v8 {
-namespace base {
-
-class AccountingAllocator {
- public:
- AccountingAllocator() = default;
- virtual ~AccountingAllocator() = default;
-
- // Returns nullptr on failed allocation.
- virtual void* Allocate(size_t bytes);
- virtual void Free(void* memory, size_t bytes);
-
- size_t GetCurrentMemoryUsage() const;
- size_t GetMaxMemoryUsage() const;
-
- private:
- AtomicWord current_memory_usage_ = 0;
- AtomicWord max_memory_usage_ = 0;
-
- DISALLOW_COPY_AND_ASSIGN(AccountingAllocator);
-};
-
-} // namespace base
-} // namespace v8
-
-#endif // V8_BASE_ACCOUNTING_ALLOCATOR_H_
« no previous file with comments | « src/ast/variables.h ('k') | src/base/accounting-allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698