| Index: src/objects/map.h
 | 
| diff --git a/src/objects/map.h b/src/objects/map.h
 | 
| index 6d0526b389c36eb5f15602b609e0ad0dedcd4638..55d80ce4c098222a751eeac16006534ed618c19c 100644
 | 
| --- a/src/objects/map.h
 | 
| +++ b/src/objects/map.h
 | 
| @@ -496,7 +496,7 @@ class Map : public HeapObject {
 | 
|    // Returns the number of enumerable properties.
 | 
|    int NumberOfEnumerableProperties();
 | 
|  
 | 
| -  DECLARE_CAST(Map)
 | 
| +  DECL_CAST(Map)
 | 
|  
 | 
|    // Code cache operations.
 | 
|  
 | 
| @@ -557,8 +557,8 @@ class Map : public HeapObject {
 | 
|    static Handle<WeakCell> WeakCellForMap(Handle<Map> map);
 | 
|  
 | 
|    // Dispatched behavior.
 | 
| -  DECLARE_PRINTER(Map)
 | 
| -  DECLARE_VERIFIER(Map)
 | 
| +  DECL_PRINTER(Map)
 | 
| +  DECL_VERIFIER(Map)
 | 
|  
 | 
|  #ifdef VERIFY_HEAP
 | 
|    void DictionaryMapVerify();
 | 
| @@ -794,11 +794,11 @@ class NormalizedMapCache : public FixedArray {
 | 
|  
 | 
|    void Clear();
 | 
|  
 | 
| -  DECLARE_CAST(NormalizedMapCache)
 | 
| +  DECL_CAST(NormalizedMapCache)
 | 
|  
 | 
|    static inline bool IsNormalizedMapCache(const HeapObject* obj);
 | 
|  
 | 
| -  DECLARE_VERIFIER(NormalizedMapCache)
 | 
| +  DECL_VERIFIER(NormalizedMapCache)
 | 
|   private:
 | 
|    static const int kEntries = 64;
 | 
|  
 | 
| 
 |