Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speedreader #12678

Merged
merged 10 commits into from
Mar 23, 2022
Merged

Speedreader #12678

merged 10 commits into from
Mar 23, 2022

Conversation

boocmp
Copy link
Contributor

@boocmp boocmp commented Mar 21, 2022

Resolves brave/brave-browser#18242,
Resolves brave/brave-browser#18234,
Resolves brave/brave-browser#18243

Submitter Checklist:

  • I confirm that no security/privacy review is needed, or that I have requested one
  • There is a ticket for my issue
  • Used Github auto-closing keywords in the PR description above
  • Wrote a good PR/commit description
  • Squashed any review feedback or "fixup" commits before merge, so that history is a record of what happened in the repo, not your PR
  • Added appropriate labels (QA/Yes or QA/No; release-notes/include or release-notes/exclude; OS/...) to the associated issue
  • Checked the PR locally: npm run test -- brave_browser_tests, npm run test -- brave_unit_tests, npm run lint, npm run gn_check, npm run tslint
  • Ran git rebase master (if needed)

Reviewer Checklist:

  • A security review is not needed, or a link to one is included in the PR description
  • New files have MPL-2.0 license header
  • Adequate test coverage exists to prevent regressions
  • Major classes, functions and non-trivial code blocks are well-commented
  • Changes in component dependencies are properly reflected in gn
  • Code follows the style guide
  • Test plan is specified in PR before merging

After-merge Checklist:

Test Plan:

@boocmp boocmp requested a review from supermassive March 21, 2022 11:56
@@ -51,6 +51,7 @@ class DeAmpURLLoader : public body_sniffer::BodySnifferURLLoader {
void ForwardBodyToClient();

base::WeakPtr<DeAmpThrottle> de_amp_throttle_;
base::WeakPtrFactory<DeAmpURLLoader> weak_factory_{this};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not used?

// Page can't be distilled.
bool PageDoesntSupportDistillation(DistillState state);

// Page can be destilled.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

@@ -58,6 +58,12 @@ enum class DistillState {
// Page is in reader mode or speedreader mode.
bool PageStateIsDistilled(DistillState state);

// Page can't be distilled.
bool PageDoesntSupportDistillation(DistillState state);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's not really clear what method of these two to use and when. It sounds like ! PageSupportsDistillation() is the same as PageDoesn'tSupportDistillation() but from the code this is not true. Can we switch to a single method or pick better names?

// content::WebContentsObserver
void ClearCache();
void ReloadContents();
void ProcessNavigation(content::NavigationHandle* navigation_handle);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

comments?


// SpeedreaderResultDelegate:
void OnDistillComplete() override;

std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_;

bool is_active_ = false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

comment?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it is_visible_ ?

void SpeedreaderTabHelper::HideBubble() {
if (speedreader_bubble_) {
speedreader_bubble_->Hide();
speedreader_bubble_ = nullptr;
}
}

void SpeedreaderTabHelper::ClearCache() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ClearPersistedData

Profile::FromBrowserContext(web_contents()->GetBrowserContext());
auto* content_rules = HostContentSettingsMapFactory::GetForProfile(profile);
return speedreader::IsEnabledForSite(content_rules, url);
void SpeedreaderTabHelper::Distill() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not Distill, rather UpdateDistillationState()?

@boocmp boocmp merged commit 01166a0 into master Mar 23, 2022
@boocmp boocmp deleted the speedreader branch March 23, 2022 10:47
@boocmp boocmp added this to the 1.38.x - Nightly milestone Mar 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants