| 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..bc4047e3de5111b6e2945861cef87012e3239f81 100644
|
| --- a/blimp/client/core/contents/blimp_contents_impl.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_impl.cc
|
| @@ -22,7 +22,8 @@ const char kBlimpContentsImplAndroidKey[] = "blimp_contents_impl_android";
|
| #endif // OS_ANDROID
|
| }
|
|
|
| -BlimpContentsImpl::BlimpContentsImpl() : navigation_controller_(this) {}
|
| +BlimpContentsImpl::BlimpContentsImpl()
|
| + : navigation_controller_(this, nullptr) {}
|
|
|
| BlimpContentsImpl::~BlimpContentsImpl() {}
|
|
|
| @@ -58,8 +59,9 @@ void BlimpContentsImpl::RemoveObserver(BlimpContentsObserver* observer) {
|
| observers_.RemoveObserver(observer);
|
| }
|
|
|
| -void BlimpContentsImpl::NotifyURLLoaded(const GURL& url) {
|
| - FOR_EACH_OBSERVER(BlimpContentsObserver, observers_, OnURLUpdated(url));
|
| +void BlimpContentsImpl::OnNavigationStateChanged() {
|
| + FOR_EACH_OBSERVER(BlimpContentsObserver, observers_,
|
| + OnNavigationStateChanged());
|
| }
|
|
|
| } // namespace client
|
|
|