Index: services/navigation/public/cpp/view.cc |
diff --git a/services/navigation/public/cpp/view.cc b/services/navigation/public/cpp/view.cc |
index d660439c40115c8f18f8786deff5b3e4b32e7d20..6a8444279fecdbdc8c536c1f3c56ade683d3dbe7 100644 |
--- a/services/navigation/public/cpp/view.cc |
+++ b/services/navigation/public/cpp/view.cc |
@@ -98,6 +98,11 @@ void View::EmbedInWindow(mus::Window* parent) { |
//////////////////////////////////////////////////////////////////////////////// |
// View, mojom::ViewClient implementation: |
+void View::OpenURL(mojom::OpenURLParamsPtr params) { |
+ if (delegate_) |
+ delegate_->OpenURL(this, std::move(params)); |
+} |
+ |
void View::LoadingStateChanged(bool is_loading) { |
is_loading_ = is_loading; |
FOR_EACH_OBSERVER(ViewObserver, observers_, LoadingStateChanged(this)); |