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

Unified Diff: src/objects-body-descriptors-fwd.h

Issue 1440243002: Object's body descriptors refactoring. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@new-visitor-base
Patch Set: Refactoring & cleanup Created 5 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: src/objects-body-descriptors-fwd.h
diff --git a/src/objects-body-descriptors-fwd.h b/src/objects-body-descriptors-fwd.h
new file mode 100644
index 0000000000000000000000000000000000000000..b9a2d0009e18a31d9512629662b70ed4a00a92b7
--- /dev/null
+++ b/src/objects-body-descriptors-fwd.h
@@ -0,0 +1,25 @@
+// Copyright 2015 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_OBJECTS_BODY_DESCRIPTORS_FWD_H_
Michael Starzinger 2015/11/13 10:58:54 I am not a fan of yet another family of header fil
Igor Sheludko 2015/11/13 11:23:51 Done.
+#define V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_
+
+namespace v8 {
+namespace internal {
+
+template <int start_offset, int end_offset, int size>
+class FixedBodyDescriptor;
+
+
+template <int start_offset, int end_offset, int size>
+class FixedBodyDescriptor;
+
+
+template <int start_offset>
+class FlexibleBodyDescriptor;
+
+} // namespace internal
+} // namespace v8
+
+#endif // V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_

Powered by Google App Engine
This is Rietveld 408576698