Index: src/ic.h |
diff --git a/src/ic.h b/src/ic.h |
index 2236ba37b67f18d37532b3145af9b53956e7d4c8..16819e50614265ce09a71ef72a52e516db5a3f42 100644 |
--- a/src/ic.h |
+++ b/src/ic.h |
@@ -348,7 +348,7 @@ class KeyedIC: public IC { |
virtual MaybeObject* GetElementStubWithoutMapCheck( |
bool is_js_array, |
- JSObject::ElementsKind elements_kind) = 0; |
+ ElementsKind elements_kind) = 0; |
protected: |
virtual Code* string_stub() { |
@@ -415,7 +415,7 @@ class KeyedLoadIC: public KeyedIC { |
virtual MaybeObject* GetElementStubWithoutMapCheck( |
bool is_js_array, |
- JSObject::ElementsKind elements_kind); |
+ ElementsKind elements_kind); |
protected: |
virtual Code::Kind kind() const { return Code::KEYED_LOAD_IC; } |
@@ -566,7 +566,7 @@ class KeyedStoreIC: public KeyedIC { |
virtual MaybeObject* GetElementStubWithoutMapCheck( |
bool is_js_array, |
- JSObject::ElementsKind elements_kind); |
+ ElementsKind elements_kind); |
protected: |
virtual Code::Kind kind() const { return Code::KEYED_STORE_IC; } |