Index: ppapi/cpp/var.cc |
diff --git a/ppapi/cpp/var.cc b/ppapi/cpp/var.cc |
index 881ce3288e02e93b0997b8b9d30c631f9417c16a..3e76593bd2763ff5fec11c110bef977ea0a8dc1a 100644 |
--- a/ppapi/cpp/var.cc |
+++ b/ppapi/cpp/var.cc |
@@ -165,6 +165,7 @@ bool Var::operator==(const Var& other) const { |
return AsString() == other.AsString(); |
case PP_VARTYPE_OBJECT: |
case PP_VARTYPE_ARRAY: |
+ case PP_VARTYPE_ARRAY_BUFFER: |
case PP_VARTYPE_DICTIONARY: |
default: // Objects, arrays, dictionaries. |
return var_.value.as_id == other.var_.value.as_id; |