Index: sandbox/win/src/handle_table.h |
diff --git a/sandbox/win/src/handle_table.h b/sandbox/win/src/handle_table.h |
index 1b553fae3aa865178b6d035af707f2342724cd45..47f625d9e376e7a41f36573f769abe0bc2f600df 100644 |
--- a/sandbox/win/src/handle_table.h |
+++ b/sandbox/win/src/handle_table.h |
@@ -40,6 +40,8 @@ class HandleTable { |
// Used by the iterator to provide simple caching accessors to handle data. |
class HandleEntry { |
public: |
+ ~HandleEntry(); |
+ |
bool operator==(const HandleEntry& rhs) const { |
return handle_entry_ == rhs.handle_entry_; |
} |
@@ -126,6 +128,7 @@ class HandleTable { |
}; |
HandleTable(); |
+ ~HandleTable(); |
Iterator begin() const { |
return Iterator(*this, handle_info()->Information, |