1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/browsing_topics/browsing_topics_calculator.h"
#include <algorithm>
#include "base/containers/contains.h"
#include "base/metrics/histogram_functions.h"
#include "base/rand_util.h"
#include "base/task/sequenced_task_runner.h"
#include "components/browsing_topics/annotator.h"
#include "components/browsing_topics/common/semantic_tree.h"
#include "components/browsing_topics/util.h"
#include "components/history/core/browser/history_service.h"
#include "components/privacy_sandbox/canonical_topic.h"
#include "components/privacy_sandbox/privacy_sandbox_settings.h"
#include "content/public/browser/browsing_topics_site_data_manager.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "third_party/blink/public/common/features.h"
namespace browsing_topics {
namespace {
// Return the max time among the three potential time boundaries:
// - `calculation_time` - `kBrowsingTopicsTimePeriodPerEpoch`.
// - Last epoch's calculation time.
// - `data_accessible_since`.
base::Time DeriveHistoryDataStartTime(
base::Time calculation_time,
const base::circular_deque<EpochTopics>& epochs,
base::Time data_accessible_since) {
base::Time start_time =
calculation_time -
blink::features::kBrowsingTopicsTimePeriodPerEpoch.Get();
if (!epochs.empty()) {
start_time = std::max(start_time, epochs.back().calculation_time());
}
return std::max(start_time, data_accessible_since);
}
// Return the max time among the three potential time boundaries:
// - `calculation_time` - `epochs_window` * `kBrowsingTopicsTimePeriodPerEpoch`.
// - The `epochs_window`-to-the-last epoch's calculation time.
// - `data_accessible_since`.
base::Time DeriveApiUsageContextDataStartTime(
base::Time calculation_time,
const base::circular_deque<EpochTopics>& epochs,
base::Time data_accessible_since) {
const size_t epochs_window =
blink::features::
kBrowsingTopicsNumberOfEpochsOfObservationDataToUseForFiltering.Get();
DCHECK_GT(epochs_window, 0u);
base::Time start_time =
calculation_time -
epochs_window * blink::features::kBrowsingTopicsTimePeriodPerEpoch.Get();
if (epochs.size() >= epochs_window) {
start_time = std::max(
start_time, epochs[epochs.size() - epochs_window].calculation_time());
}
return std::max(start_time, data_accessible_since);
}
void RecordCalculatorResultMetrics(
const EpochTopics& epoch_topics,
base::TimeDelta calculation_start_time_since_session_start,
int previous_timeout_count) {
const std::optional<CalculatorResultStatus>& status =
epoch_topics.calculator_result_status();
CHECK(status);
if (previous_timeout_count) {
base::UmaHistogramEnumeration(
"BrowsingTopics.EpochTopicsCalculation.TimeoutRetry."
"CalculatorResultStatus",
*status);
} else {
base::UmaHistogramEnumeration(
"BrowsingTopics.EpochTopicsCalculation.FirstTry.CalculatorResultStatus",
*status);
}
if (DoesCalculationFailDueToHanging(*status)) {
base::UmaHistogramExactLinear(
"BrowsingTopics.EpochTopicsCalculation.Hanging.RetryNumber",
previous_timeout_count,
/*exclusive_max=*/30);
}
ukm::UkmRecorder* ukm_recorder = ukm::UkmRecorder::Get();
ukm::builders::BrowsingTopics_EpochTopicsCalculationResult builder(
ukm::NoURLSourceId());
if (*status == CalculatorResultStatus::kSuccess) {
const std::vector<TopicAndDomains>& topics =
epoch_topics.top_topics_and_observing_domains();
if (topics.size() > 0 && topics[0].IsValid())
builder.SetTopTopic0(topics[0].topic().value());
if (topics.size() > 1 && topics[1].IsValid())
builder.SetTopTopic1(topics[1].topic().value());
if (topics.size() > 2 && topics[2].IsValid())
builder.SetTopTopic2(topics[2].topic().value());
if (topics.size() > 3 && topics[3].IsValid())
builder.SetTopTopic3(topics[3].topic().value());
if (topics.size() > 4 && topics[4].IsValid())
builder.SetTopTopic4(topics[4].topic().value());
builder.SetTaxonomyVersion(epoch_topics.taxonomy_version())
.SetModelVersion(epoch_topics.model_version())
.SetPaddedTopicsStartIndex(
epoch_topics.padded_top_topics_start_index());
}
builder.Record(ukm_recorder->Get());
}
// Derive the mapping from hosts to topics and the mapping from topics to hosts.
// Precondition: the annotation didn't fail in general (e.g. `ModelInfo` is
// valid).
void DeriveHostTopicsMapAndTopicHostsMap(
const std::vector<Annotation>& results,
std::map<HashedHost, std::set<Topic>>& host_topics_map,
std::map<Topic, std::set<HashedHost>>& topic_hosts_map) {
DCHECK(host_topics_map.empty());
DCHECK(topic_hosts_map.empty());
for (const Annotation& annotation : results) {
HashedHost host = HashMainFrameHostForStorage(annotation.input);
for (int32_t topic_id : annotation.topics) {
Topic topic = Topic(topic_id);
topic_hosts_map[topic].insert(host);
host_topics_map[host].insert(topic);
}
}
}
// For `topic`, derive the context domains that observed it. This is done by
// first getting the hosts about `topic` from `topic_hosts_map`, and
// for each site, get the callers (context domains) that were on that site and
// add the callers to a result set.
std::set<HashedDomain> GetTopicObservationDomains(
const Topic& topic,
const std::map<Topic, std::set<HashedHost>>& topic_hosts_map,
const std::map<HashedHost, std::vector<HashedDomain>>&
host_context_domains_map) {
std::set<HashedDomain> topic_observation_domains;
// If `topic` was padded, it may not exist in `topic_hosts_map`. In this
// case, return an empty set.
auto topic_it = topic_hosts_map.find(topic);
if (topic_it == topic_hosts_map.end())
return std::set<HashedDomain>();
const std::set<HashedHost>& hosts = topic_it->second;
for (const HashedHost& host : hosts) {
// `host` came from the history database, and it may not exist in the
// `host_context_domains_map` which came from the usage contexts
// database, due to e.g. per-context data deletion, database errors, etc.
// In this case, continue checking other hosts.
auto host_it = host_context_domains_map.find(host);
if (host_it == host_context_domains_map.end())
continue;
const std::vector<HashedDomain>& context_domains = host_it->second;
for (const HashedDomain& context_domain : context_domains) {
topic_observation_domains.insert(context_domain);
// To limit memory usage, cap the number of context domains to keep
// per-topic. The larger `HashedDomain`s will be kept. This is fair, as
// the hashing for context domains is per-user, so we are not
// prioritizing any domains in general.
if (topic_observation_domains.size() >
static_cast<size_t>(
blink::features::
kBrowsingTopicsMaxNumberOfApiUsageContextDomainsToKeepPerTopic
.Get())) {
topic_observation_domains.erase(topic_observation_domains.begin());
}
}
}
return topic_observation_domains;
}
} // namespace
BrowsingTopicsCalculator::BrowsingTopicsCalculator(
privacy_sandbox::PrivacySandboxSettings* privacy_sandbox_settings,
history::HistoryService* history_service,
content::BrowsingTopicsSiteDataManager* site_data_manager,
Annotator* annotator,
const base::circular_deque<EpochTopics>& epochs,
bool is_manually_triggered,
int previous_timeout_count,
base::Time session_start_time,
CalculateCompletedCallback callback)
: privacy_sandbox_settings_(privacy_sandbox_settings),
history_service_(history_service),
site_data_manager_(site_data_manager),
annotator_(annotator),
calculate_completed_callback_(std::move(callback)),
calculation_time_(base::Time::Now()),
is_manually_triggered_(is_manually_triggered),
previous_timeout_count_(previous_timeout_count),
session_start_time_(session_start_time) {
base::UmaHistogramExactLinear(
"BrowsingTopics.EpochTopicsCalculation.Started.RetryNumber",
previous_timeout_count,
/*exclusive_max=*/30);
history_data_start_time_ = DeriveHistoryDataStartTime(
calculation_time_, epochs,
privacy_sandbox_settings_->TopicsDataAccessibleSince());
api_usage_context_data_start_time_ = DeriveApiUsageContextDataStartTime(
calculation_time_, epochs,
privacy_sandbox_settings_->TopicsDataAccessibleSince());
// Continue asynchronously so that `calculate_completed_callback_` isn't
// called synchronously while `this` is being constructed.
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&BrowsingTopicsCalculator::CheckCanCalculate,
weak_ptr_factory_.GetWeakPtr()));
}
BrowsingTopicsCalculator::~BrowsingTopicsCalculator() {
// If the calculation has completed, then don't record the metrics about
// termination.
if (progress_ == Progress::kCompleted) {
return;
}
RecordCalculatorResultMetrics(
EpochTopics(calculation_time_, CalculatorResultStatus::kTerminated),
calculation_time_ - session_start_time_, previous_timeout_count_);
}
uint64_t BrowsingTopicsCalculator::GenerateRandUint64() {
return base::RandUint64();
}
void BrowsingTopicsCalculator::DeriveTopTopics(
const std::map<HashedHost, size_t>& history_hosts_count,
const std::map<HashedHost, std::set<Topic>>& host_topics_map,
std::vector<Topic>& top_topics,
size_t& padded_top_topics_start_index,
size_t& history_topics_count) {
DCHECK(top_topics.empty());
DCHECK_EQ(padded_top_topics_start_index, 0u);
DCHECK_EQ(history_topics_count, 0u);
// Derive the frequency of each topic, by summing up the frequencies of the
// associated hosts. TODO(yaoxia): consider applying inverse frequency of
// topics (https://github.com/jkarlin/topics/issues/42).
std::map<Topic, size_t> topics_count;
for (auto const& [host, host_count] : history_hosts_count) {
// A host wouldn't be found if there were no topics associated with it.
auto it = host_topics_map.find(host);
if (it == host_topics_map.end())
continue;
const std::set<Topic>& topics = it->second;
for (const Topic& topic : topics) {
topics_count[topic] += host_count;
}
}
history_topics_count = topics_count.size();
std::map<Topic, std::pair<bool, size_t>> topics_priorities_and_counts;
for (const auto& [topic, count] : topics_count) {
bool priority = privacy_sandbox_settings_->IsTopicPrioritized(
privacy_sandbox::CanonicalTopic(
topic, blink::features::kBrowsingTopicsTaxonomyVersion.Get()));
topics_priorities_and_counts[topic] = {priority, count};
}
// Get the top up to `kBrowsingTopicsNumberOfTopTopicsPerEpoch` topics,
// sorted by decreasing count.
using TopicsCountValue = std::pair<Topic, std::pair<bool, size_t>>;
std::vector<TopicsCountValue> top_topics_count(std::min(
static_cast<size_t>(
blink::features::kBrowsingTopicsNumberOfTopTopicsPerEpoch.Get()),
topics_priorities_and_counts.size()));
std::partial_sort_copy(topics_priorities_and_counts.begin(),
topics_priorities_and_counts.end(),
top_topics_count.begin(), top_topics_count.end(),
[](auto& left, auto& right) {
return (left.second.first > right.second.first) ||
(left.second.first == right.second.first &&
left.second.second > right.second.second);
});
std::ranges::transform(top_topics_count, std::back_inserter(top_topics),
&TopicsCountValue::first);
padded_top_topics_start_index = top_topics.size();
// Pad the top topics with distinct random topics until we have
// `kBrowsingTopicsNumberOfTopTopicsPerEpoch` topics.
SemanticTree semantic_tree;
while (top_topics.size() <
static_cast<size_t>(
blink::features::kBrowsingTopicsNumberOfTopTopicsPerEpoch.Get())) {
Topic padded_topic(0);
do {
int taxonomy_version =
blink::features::kBrowsingTopicsTaxonomyVersion.Get();
uint64_t padded_topic_index_decision = GenerateRandUint64();
padded_topic = semantic_tree.GetRandomTopic(taxonomy_version,
padded_topic_index_decision);
} while (base::Contains(top_topics, padded_topic));
top_topics.emplace_back(std::move(padded_topic));
}
}
void BrowsingTopicsCalculator::CheckCanCalculate() {
CHECK_EQ(progress_, Progress::kStarted);
if (!privacy_sandbox_settings_->IsTopicsAllowed()) {
OnCalculateCompleted(EpochTopics(
calculation_time_, CalculatorResultStatus::kFailurePermissionDenied));
return;
}
progress_ = Progress::kApiUsageRequested;
CHECK(!timeout_timer_.IsRunning());
timeout_timer_.Start(
FROM_HERE, base::Seconds(30),
base::BindOnce(&BrowsingTopicsCalculator::OnCalculationHanging,
weak_ptr_factory_.GetWeakPtr()));
// Get the the api usages context map (from the calling context domain to a
// set of history hosts) so that we can figure out which topics the APIs were
// called on.
site_data_manager_->GetBrowsingTopicsApiUsage(
/*begin_time=*/api_usage_context_data_start_time_,
/*end_time=*/calculation_time_,
base::BindOnce(&BrowsingTopicsCalculator::
OnGetRecentBrowsingTopicsApiUsagesCompleted,
weak_ptr_factory_.GetWeakPtr()));
}
void BrowsingTopicsCalculator::OnGetRecentBrowsingTopicsApiUsagesCompleted(
browsing_topics::ApiUsageContextQueryResult result) {
CHECK_EQ(progress_, Progress::kApiUsageRequested);
DCHECK(host_context_domains_map_.empty());
if (!result.success) {
OnCalculateCompleted(
EpochTopics(calculation_time_,
CalculatorResultStatus::kFailureApiUsageContextQueryError));
return;
}
for (const ApiUsageContext& usage_context : result.api_usage_contexts) {
host_context_domains_map_[usage_context.hashed_main_frame_host]
.emplace_back(usage_context.hashed_context_domain);
}
// `ApiUsageContext::hashed_main_frame_host` is a hashed number. To get the
// topic associated with it, we will need to match it against a set of raw
// hosts with topics. Thus, here we query the history with the larger time
// range (from `api_usage_context_data_start_time_` to `calculation_time_`) to
// get the raw hosts.
history::QueryOptions options;
options.begin_time = api_usage_context_data_start_time_;
options.end_time = calculation_time_;
options.duplicate_policy = history::QueryOptions::KEEP_ALL_DUPLICATES;
progress_ = Progress::kHistoryRequested;
CHECK(timeout_timer_.IsRunning());
timeout_timer_.Reset();
history_service_->QueryHistory(
std::u16string(), options,
base::BindOnce(
&BrowsingTopicsCalculator::OnGetRecentlyVisitedURLsCompleted,
weak_ptr_factory_.GetWeakPtr()),
&history_task_tracker_);
}
void BrowsingTopicsCalculator::OnGetRecentlyVisitedURLsCompleted(
history::QueryResults results) {
CHECK_EQ(progress_, Progress::kHistoryRequested);
DCHECK(history_hosts_count_.empty());
std::set<std::string> raw_hosts;
for (const history::URLResult& url_result : results) {
if (!(url_result.content_annotations().annotation_flags &
history::VisitContentAnnotationFlag::kBrowsingTopicsEligible)) {
continue;
}
std::string raw_host = url_result.url().host();
raw_hosts.insert(raw_host);
if (url_result.visit_time() >= history_data_start_time_) {
HashedHost host = HashMainFrameHostForStorage(raw_host);
history_hosts_count_[host]++;
}
}
base::UmaHistogramCounts1000(
"BrowsingTopics.EpochTopicsCalculation.EligibleDistinctHistoryHostsCount",
history_hosts_count_.size());
progress_ = Progress::kModelRequested;
CHECK(timeout_timer_.IsRunning());
timeout_timer_.Reset();
// When the input is empty, we still want to wait for the model availability
// status to be known, before querying the model version. Thus we simply
// always call `NotifyWhenModelAvailable()` first. If the model
// availability status is already known, the function will be cheap and the
// callback will be synchronously called.
annotator_->NotifyWhenModelAvailable(base::BindOnce(
&BrowsingTopicsCalculator::OnRequestModelCompleted,
weak_ptr_factory_.GetWeakPtr(),
std::vector<std::string>(raw_hosts.begin(), raw_hosts.end())));
}
void BrowsingTopicsCalculator::OnRequestModelCompleted(
std::vector<std::string> raw_hosts) {
CHECK_EQ(progress_, Progress::kModelRequested);
if (raw_hosts.empty()) {
OnGetTopicsForHostsCompleted(/*results=*/{});
return;
}
progress_ = Progress::kAnnotationRequested;
CHECK(timeout_timer_.IsRunning());
timeout_timer_.Reset();
annotator_->BatchAnnotate(
base::BindOnce(&BrowsingTopicsCalculator::OnGetTopicsForHostsCompleted,
weak_ptr_factory_.GetWeakPtr()),
raw_hosts);
}
void BrowsingTopicsCalculator::OnGetTopicsForHostsCompleted(
const std::vector<Annotation>& results) {
if (results.empty()) {
CHECK_EQ(progress_, Progress::kModelRequested);
} else {
CHECK_EQ(progress_, Progress::kAnnotationRequested);
}
std::optional<optimization_guide::ModelInfo> model_info =
annotator_->GetBrowsingTopicsModelInfo();
if (!model_info) {
OnCalculateCompleted(
EpochTopics(calculation_time_,
CalculatorResultStatus::kFailureAnnotationExecutionError));
return;
}
SemanticTree semantic_tree;
if (!semantic_tree.IsTaxonomySupported(
blink::features::kBrowsingTopicsTaxonomyVersion.Get())) {
OnCalculateCompleted(EpochTopics(
calculation_time_,
CalculatorResultStatus::kFailureTaxonomyVersionNotSupportedInBinary));
return;
}
const int64_t model_version = model_info->GetVersion();
DCHECK_GT(model_version, 0);
std::map<HashedHost, std::set<Topic>> host_topics_map;
std::map<Topic, std::set<HashedHost>> topic_hosts_map;
DeriveHostTopicsMapAndTopicHostsMap(results, host_topics_map,
topic_hosts_map);
std::vector<Topic> top_topics;
size_t padded_top_topics_start_index = 0u;
size_t history_topics_count = 0u;
DeriveTopTopics(history_hosts_count_, host_topics_map, top_topics,
padded_top_topics_start_index, history_topics_count);
base::UmaHistogramCounts1000(
"BrowsingTopics.EpochTopicsCalculation.HistoryTopicsCount",
history_topics_count);
base::UmaHistogramCounts100(
"BrowsingTopics.EpochTopicsCalculation.TopTopicsCountBeforePadding",
padded_top_topics_start_index);
// For each top topic, derive the context domains that observed it
std::vector<TopicAndDomains> top_topics_and_observing_domains;
for (const Topic& topic : top_topics) {
if (!privacy_sandbox_settings_->IsTopicAllowed(
privacy_sandbox::CanonicalTopic(
topic,
blink::features::kBrowsingTopicsTaxonomyVersion.Get()))) {
top_topics_and_observing_domains.emplace_back(TopicAndDomains());
continue;
}
std::set<HashedDomain> topic_observation_domains =
GetTopicObservationDomains(topic, topic_hosts_map,
host_context_domains_map_);
// Calculate descendant topics + their observing context domains
std::vector<Topic> descendant_topics =
semantic_tree.GetDescendantTopics(topic);
for (const Topic& descendant_topic : descendant_topics) {
std::set<HashedDomain> descendant_topic_observation_domains =
GetTopicObservationDomains(descendant_topic, topic_hosts_map,
host_context_domains_map_);
topic_observation_domains.insert(
descendant_topic_observation_domains.begin(),
descendant_topic_observation_domains.end());
}
base::UmaHistogramCounts1000(
"BrowsingTopics.EpochTopicsCalculation."
"ObservationContextDomainsCountPerTopTopic",
topic_observation_domains.size());
top_topics_and_observing_domains.emplace_back(
TopicAndDomains(topic, std::move(topic_observation_domains)));
}
OnCalculateCompleted(
EpochTopics(std::move(top_topics_and_observing_domains),
padded_top_topics_start_index, CurrentConfigVersion(),
blink::features::kBrowsingTopicsTaxonomyVersion.Get(),
model_version, calculation_time_, is_manually_triggered_));
}
void BrowsingTopicsCalculator::OnCalculateCompleted(
EpochTopics epoch_topics) {
progress_ = Progress::kCompleted;
const std::optional<CalculatorResultStatus>& status =
epoch_topics.calculator_result_status();
CHECK(status);
DCHECK(*status != CalculatorResultStatus::kSuccess || !epoch_topics.empty());
RecordCalculatorResultMetrics(epoch_topics,
calculation_time_ - session_start_time_,
previous_timeout_count_);
std::move(calculate_completed_callback_).Run(std::move(epoch_topics));
// Do not add code after this. BrowsingTopicsCalculator has been destroyed.
}
void BrowsingTopicsCalculator::OnCalculationHanging() {
// `OnCalculationHanging` was posted after `progress_` switched to
// `kApiUsageRequested`.
CHECK_NE(progress_, Progress::kStarted);
// When the calculation completes, it updates `progress_` to `kCompleted` and
// triggers the destruction of `this`. Thus, by the time
// `OnCalculationHanging` runs, `progress_` should never be `kCompleted`.
CHECK_NE(progress_, Progress::kCompleted);
CalculatorResultStatus status;
switch (progress_) {
case Progress::kApiUsageRequested:
status = CalculatorResultStatus::kHangingAfterApiUsageRequested;
break;
case Progress::kHistoryRequested:
status = CalculatorResultStatus::kHangingAfterHistoryRequested;
break;
case Progress::kModelRequested:
status = CalculatorResultStatus::kHangingAfterModelRequested;
break;
case Progress::kAnnotationRequested:
status = CalculatorResultStatus::kHangingAfterAnnotationRequested;
break;
default:
NOTREACHED();
}
OnCalculateCompleted(EpochTopics(calculation_time_, status));
}
} // namespace browsing_topics
|