blob: 6fc87f7016abbfdc0e314ebc2464e5e5604ee71c [file] [log] [blame]
// 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 "content/browser/find_request_manager.h"
#include "content/browser/frame_host/render_frame_host_impl.h"
namespace content {
FindInPageClient::FindInPageClient(FindRequestManager* find_request_manager,
RenderFrameHostImpl* rfh)
: frame_(rfh), find_request_manager_(find_request_manager), binding_(this) {
blink::mojom::FindInPageClientPtr client;
binding_.Bind(MakeRequest(&client));
frame_->GetFindInPage()->SetClient(std::move(client));
}
FindInPageClient::~FindInPageClient() {}
void FindInPageClient::SetNumberOfMatches(
int request_id,
unsigned int number_of_matches,
blink::mojom::FindMatchUpdateType update_type) {
const int old_matches = number_of_matches_;
number_of_matches_ = number_of_matches;
find_request_manager_->UpdatedFrameNumberOfMatches(frame_, old_matches,
number_of_matches);
// 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 */);
}
void FindInPageClient::SetActiveMatch(int request_id,
const gfx::Rect& active_match_rect,
int active_match_ordinal) {
find_request_manager_->SetActiveMatchRect(active_match_rect);
find_request_manager_->SetActiveMatchOrdinal(frame_, request_id,
active_match_ordinal);
find_request_manager_->HandleFinalUpdateForFrame(frame_, request_id);
}
void FindInPageClient::ActivateNearestFindResult(int request_id,
const gfx::PointF& point) {
frame_->GetFindInPage()->ActivateNearestFindResult(request_id, point);
}
} // namespace content