| Index: blimp/client/core/contents/blimp_contents_impl.cc
|
| diff --git a/blimp/client/core/contents/blimp_contents_impl.cc b/blimp/client/core/contents/blimp_contents_impl.cc
|
| index 37d25a9ad5d172435c2ef24eba5a15cf65596921..9fdd73d1e3c5e1e72df5ba9d2aa5bc37d7233f51 100644
|
| --- a/blimp/client/core/contents/blimp_contents_impl.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_impl.cc
|
| @@ -22,9 +22,12 @@ const char kBlimpContentsImplAndroidKey[] = "blimp_contents_impl_android";
|
| #endif // OS_ANDROID
|
| }
|
|
|
| -BlimpContentsImpl::BlimpContentsImpl() : navigation_controller_(this) {}
|
| +BlimpContentsImpl::BlimpContentsImpl(int id)
|
| + : navigation_controller_(this), id_(id) {}
|
|
|
| -BlimpContentsImpl::~BlimpContentsImpl() {}
|
| +BlimpContentsImpl::~BlimpContentsImpl() {
|
| + FOR_EACH_OBSERVER(BlimpContentsObserver, observers_, OnContentsDestroyed());
|
| +}
|
|
|
| #if defined(OS_ANDROID)
|
|
|
|
|