Fix sky shell.

This add the missing RequestNavigateHistory method on sky::Engine.

It is currently not implemented.

TBR=abarth@chromium.org

Review URL: https://codereview.chromium.org/957973003
This commit is contained in:
Benjamin Lerman 2015-02-26 10:46:25 +01:00
parent cec128f499
commit 30cd9363cd
2 changed files with 5 additions and 0 deletions

View File

@ -159,5 +159,9 @@ void Engine::RequestNavigate(mojo::Target target,
void Engine::DidNavigateLocally(const mojo::String& url) {
}
void Engine::RequestNavigateHistory(int32_t delta) {
NOTIMPLEMENTED();
}
} // namespace shell
} // namespace sky

View File

@ -73,6 +73,7 @@ class Engine : public UIDelegate,
void RequestNavigate(mojo::Target target,
mojo::URLRequestPtr request) override;
void DidNavigateLocally(const mojo::String& url) override;
void RequestNavigateHistory(int32_t delta) override;
void UpdateWebViewSize();