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

Unified Diff: src/isolate.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Moved zones and zone related stuff into it's own folder 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
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 95c300f3a948fea72c49eda74ec084c9f6a655ee..d6dc7fb6e48958581790caf642886bf1d191a120 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -23,7 +23,7 @@
#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 {
@@ -1158,7 +1158,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);
@@ -1334,7 +1334,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_;

Powered by Google App Engine
This is Rietveld 408576698