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

Unified Diff: src/objects/dictionary.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/descriptor-array.h ('k') | src/objects/frame-array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects/dictionary.h
diff --git a/src/objects/dictionary.h b/src/objects/dictionary.h
index ffbeb2acc69e9abc9c00ceac5f88fd29a5bd050d..022bea8308589c1ab3af587e201b38ba366fa0b5 100644
--- a/src/objects/dictionary.h
+++ b/src/objects/dictionary.h
@@ -167,7 +167,7 @@ class BaseNameDictionary : public Dictionary<Derived, Shape> {
class NameDictionary
: public BaseNameDictionary<NameDictionary, NameDictionaryShape> {
public:
- DECLARE_CAST(NameDictionary)
+ DECL_CAST(NameDictionary)
static const int kEntryDetailsIndex = 2;
static const int kInitialCapacity = 2;
@@ -196,7 +196,7 @@ class GlobalDictionaryShape : public NameDictionaryShape {
class GlobalDictionary
: public BaseNameDictionary<GlobalDictionary, GlobalDictionaryShape> {
public:
- DECLARE_CAST(GlobalDictionary)
+ DECL_CAST(GlobalDictionary)
inline Object* ValueAt(int entry);
inline PropertyCell* CellAt(int entry);
@@ -253,7 +253,7 @@ extern template class EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE)
class SeededNumberDictionary
: public Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape> {
public:
- DECLARE_CAST(SeededNumberDictionary)
+ DECL_CAST(SeededNumberDictionary)
// Type specific at put (default NONE attributes is used when adding).
MUST_USE_RESULT static Handle<SeededNumberDictionary> Set(
@@ -301,7 +301,7 @@ class UnseededNumberDictionary
: public Dictionary<UnseededNumberDictionary,
UnseededNumberDictionaryShape> {
public:
- DECLARE_CAST(UnseededNumberDictionary)
+ DECL_CAST(UnseededNumberDictionary)
// Type specific at put (default NONE attributes is used when adding).
MUST_USE_RESULT static Handle<UnseededNumberDictionary> Set(
« no previous file with comments | « src/objects/descriptor-array.h ('k') | src/objects/frame-array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698