
Convert the implementation and clients in the browser and renderer processes (i.e. blink::FindInPage, content::FindInPageClient) to the new types, as well as the signature of the FindInPage::SetClient() method as defined in the find_in_page.mojom file. Bug: 955171, 978694 Change-Id: I4511bb238333fe846e0e681c225dbceaa05dcf6e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1701849 Reviewed-by: Ken Buchanan <kenrb@chromium.org> Reviewed-by: Camille Lamy <clamy@chromium.org> Reviewed-by: Ken Rockot <rockot@google.com> Reviewed-by: Daniel Cheng <dcheng@chromium.org> Reviewed-by: Dave Tapuska <dtapuska@chromium.org> Commit-Queue: Mario Sanchez Prada <mario@igalia.com> Cr-Commit-Position: refs/heads/master@{#678450}
69 lines
2.6 KiB
C++
69 lines
2.6 KiB
C++
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "content/browser/find_in_page_client.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "content/browser/find_request_manager.h"
|
|
#include "content/browser/frame_host/render_frame_host_impl.h"
|
|
#include "mojo/public/cpp/bindings/pending_remote.h"
|
|
|
|
namespace content {
|
|
|
|
FindInPageClient::FindInPageClient(FindRequestManager* find_request_manager,
|
|
RenderFrameHostImpl* rfh)
|
|
: frame_(rfh), find_request_manager_(find_request_manager) {
|
|
frame_->GetFindInPage()->SetClient(receiver_.BindNewPipeAndPassRemote());
|
|
}
|
|
|
|
FindInPageClient::~FindInPageClient() {}
|
|
|
|
void FindInPageClient::SetNumberOfMatches(
|
|
int request_id,
|
|
unsigned int number_of_matches,
|
|
blink::mojom::FindMatchUpdateType update_type) {
|
|
if (find_request_manager_->ShouldIgnoreReply(frame_, request_id))
|
|
return;
|
|
const int old_matches = number_of_matches_;
|
|
number_of_matches_ = number_of_matches;
|
|
find_request_manager_->UpdatedFrameNumberOfMatches(frame_, old_matches,
|
|
number_of_matches);
|
|
HandleUpdateType(request_id, update_type);
|
|
}
|
|
|
|
void FindInPageClient::SetActiveMatch(
|
|
int request_id,
|
|
const gfx::Rect& active_match_rect,
|
|
int active_match_ordinal,
|
|
blink::mojom::FindMatchUpdateType update_type) {
|
|
if (find_request_manager_->ShouldIgnoreReply(frame_, request_id))
|
|
return;
|
|
find_request_manager_->SetActiveMatchRect(active_match_rect);
|
|
find_request_manager_->SetActiveMatchOrdinal(frame_, request_id,
|
|
active_match_ordinal);
|
|
HandleUpdateType(request_id, update_type);
|
|
}
|
|
|
|
void FindInPageClient::ActivateNearestFindResult(int request_id,
|
|
const gfx::PointF& point) {
|
|
frame_->GetFindInPage()->ActivateNearestFindResult(request_id, point);
|
|
}
|
|
|
|
void FindInPageClient::HandleUpdateType(
|
|
int request_id,
|
|
blink::mojom::FindMatchUpdateType update_type) {
|
|
// If this is the final update for this frame, it might be the final update
|
|
// for the find request out of all the frames, so we need to handle it.
|
|
// Otherwise just notify directly while saying this is not the final update
|
|
// for the request.
|
|
if (update_type == blink::mojom::FindMatchUpdateType::kFinalUpdate)
|
|
find_request_manager_->HandleFinalUpdateForFrame(frame_, request_id);
|
|
else
|
|
find_request_manager_->NotifyFindReply(request_id,
|
|
false /* final_update */);
|
|
}
|
|
|
|
} // namespace content
|