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

Unified Diff: src/objects/frame-array.h

Issue 2961253002: [objects] Rename macros from DECLARE_ to DECL_ for consistency. (Closed)
Patch Set: Created 3 years, 6 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/objects/dictionary.h ('k') | src/objects/hash-table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects/frame-array.h
diff --git a/src/objects/frame-array.h b/src/objects/frame-array.h
index c3e77df66fd341e4bf176382eac522f445137019..8bc188cf6ac2b1709171f4a6f41441e895b9f8ec 100644
--- a/src/objects/frame-array.h
+++ b/src/objects/frame-array.h
@@ -29,11 +29,11 @@ class Handle;
// Container object for data collected during simple stack trace captures.
class FrameArray : public FixedArray {
public:
-#define DECLARE_FRAME_ARRAY_ACCESSORS(name, type) \
- inline type* name(int frame_ix) const; \
+#define DECL_FRAME_ARRAY_ACCESSORS(name, type) \
+ inline type* name(int frame_ix) const; \
inline void Set##name(int frame_ix, type* value);
- FRAME_ARRAY_FIELD_LIST(DECLARE_FRAME_ARRAY_ACCESSORS)
-#undef DECLARE_FRAME_ARRAY_ACCESSORS
+ FRAME_ARRAY_FIELD_LIST(DECL_FRAME_ARRAY_ACCESSORS)
+#undef DECL_FRAME_ARRAY_ACCESSORS
inline bool IsWasmFrame(int frame_ix) const;
inline bool IsWasmInterpretedFrame(int frame_ix) const;
@@ -62,7 +62,7 @@ class FrameArray : public FixedArray {
int wasm_function_index, Handle<AbstractCode> code, int offset,
int flags);
- DECLARE_CAST(FrameArray)
+ DECL_CAST(FrameArray)
private:
// The underlying fixed array embodies a captured stack trace. Frame i
« no previous file with comments | « src/objects/dictionary.h ('k') | src/objects/hash-table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698