| Index: blimp/client/core/blimp_contents_impl.cc
|
| diff --git a/blimp/client/core/blimp_contents_impl.cc b/blimp/client/core/blimp_contents_impl.cc
|
| index 3e93e9240e82b6f48fafdffb511afe154fe3921a..300a8d4e3b5d52ee1e02d542e225ec992ec6804d 100644
|
| --- a/blimp/client/core/blimp_contents_impl.cc
|
| +++ b/blimp/client/core/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
|
|
|