Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1298)

Unified Diff: components/dom_distiller/content/browser/dom_distiller_viewer_source.cc

Issue 1225183002: Font size in DomDistiller prefs syncs with local scaling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge master again Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/content/browser/dom_distiller_viewer_source.cc
diff --git a/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc b/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc
index a71fc07eb63be5b48c804fd67b941576bd22d5e4..118324a2c521ad8f9b82539d0157ec6d659ad178 100644
--- a/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc
+++ b/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc
@@ -4,7 +4,6 @@
#include "components/dom_distiller/content/browser/dom_distiller_viewer_source.h"
-#include <sstream>
#include <string>
#include <vector>
@@ -12,6 +11,8 @@
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/user_metrics.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "components/dom_distiller/content/browser/distiller_javascript_service_impl.h"
#include "components/dom_distiller/content/browser/distiller_javascript_utils.h"
@@ -111,6 +112,7 @@ void DomDistillerViewerSource::RequestViewerHandle::SendJavaScript(
if (waiting_for_page_ready_) {
buffer_ += buffer;
} else {
+ DCHECK(buffer_.empty());
if (web_contents()) {
RunIsolatedJavaScript(web_contents()->GetMainFrame(), buffer);
}
@@ -154,14 +156,14 @@ void DomDistillerViewerSource::RequestViewerHandle::DidFinishLoad(
if (render_frame_host->GetParent()) {
return;
}
+
+ // No SendJavaScript() calls allowed before |buffer_| is run and cleared.
waiting_for_page_ready_ = false;
if (!buffer_.empty()) {
RunIsolatedJavaScript(web_contents()->GetMainFrame(), buffer_);
buffer_.clear();
}
- if (IsErrorPage()) {
- Cancel(); // This will cause the object to clean itself up.
- }
+ // No need to Cancel() here.
}
DomDistillerViewerSource::DomDistillerViewerSource(
@@ -202,6 +204,13 @@ void DomDistillerViewerSource::StartDataRequest(
content::RecordAction(base::UserMetricsAction("DomDistiller_ViewOriginal"));
callback.Run(NULL);
return;
+ } else if (base::StartsWith(path, kViewerSaveFontScalingPath,
+ base::CompareCase::SENSITIVE)) {
+ double scale = 1.0;
+ if (base::StringToDouble(
+ path.substr(strlen(kViewerSaveFontScalingPath)), &scale)) {
+ dom_distiller_service_->GetDistilledPagePrefs()->SetFontScaling(scale);
+ }
}
content::WebContents* web_contents =
content::WebContents::FromRenderFrameHost(render_frame_host);

Powered by Google App Engine
This is Rietveld 408576698