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

Unified Diff: src/isolate.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/interpreter/interpreter-assembler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index d8a50c15679658644eb267fbf4d19ce9def9d037..4db41b5fa324a108b2754d7f9391969879048f16 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -23,12 +23,11 @@
#include "src/messages.h"
#include "src/regexp/regexp-stack.h"
#include "src/runtime/runtime.h"
-#include "src/zone.h"
+#include "src/zone/zone.h"
namespace v8 {
namespace base {
-class AccountingAllocator;
class RandomNumberGenerator;
}
@@ -1160,7 +1159,7 @@ class Isolate {
interpreter::Interpreter* interpreter() const { return interpreter_; }
- base::AccountingAllocator* allocator() { return allocator_; }
+ AccountingAllocator* allocator() { return allocator_; }
bool IsInAnyContext(Object* object, uint32_t index);
@@ -1336,7 +1335,7 @@ class Isolate {
HandleScopeData handle_scope_data_;
HandleScopeImplementer* handle_scope_implementer_;
UnicodeCache* unicode_cache_;
- base::AccountingAllocator* allocator_;
+ AccountingAllocator* allocator_;
Zone* runtime_zone_;
InnerPointerToCodeCache* inner_pointer_to_code_cache_;
GlobalHandles* global_handles_;
« no previous file with comments | « src/interpreter/interpreter-assembler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698