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

Unified Diff: components/plugins/renderer/loadable_plugin_placeholder.cc

Issue 2143073002: Plugin Power Saver: Improve blocked tiny plugins behavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename a variable again Created 4 years, 5 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
« no previous file with comments | « components/plugins/renderer/loadable_plugin_placeholder.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/plugins/renderer/loadable_plugin_placeholder.cc
diff --git a/components/plugins/renderer/loadable_plugin_placeholder.cc b/components/plugins/renderer/loadable_plugin_placeholder.cc
index 2da903ed5d509c01e30593ff0bdbd859ec5ae2f8..aa9a97fedcd6237d352ee8237d847c34112cc4b1 100644
--- a/components/plugins/renderer/loadable_plugin_placeholder.cc
+++ b/components/plugins/renderer/loadable_plugin_placeholder.cc
@@ -60,7 +60,7 @@ LoadablePluginPlaceholder::LoadablePluginPlaceholder(
const blink::WebPluginParams& params,
const std::string& html_data)
: PluginPlaceholderBase(render_frame, frame, params, html_data),
- is_delayed_placeholder_(false),
+ is_blocked_for_tinyness_(false),
is_blocked_for_background_tab_(false),
is_blocked_for_prerendering_(false),
is_blocked_for_power_saver_poster_(false),
@@ -74,11 +74,6 @@ LoadablePluginPlaceholder::LoadablePluginPlaceholder(
LoadablePluginPlaceholder::~LoadablePluginPlaceholder() {
}
-void LoadablePluginPlaceholder::SetDelegate(
- std::unique_ptr<Delegate> delegate) {
- delegate_ = std::move(delegate);
-}
-
void LoadablePluginPlaceholder::MarkPluginEssential(
PluginInstanceThrottler::PowerSaverUnthrottleMethod method) {
if (!power_saver_enabled_)
@@ -91,11 +86,10 @@ void LoadablePluginPlaceholder::MarkPluginEssential(
else if (method != PluginInstanceThrottler::UNTHROTTLE_METHOD_DO_NOT_RECORD)
PluginInstanceThrottler::RecordUnthrottleMethodMetric(method);
- if (is_blocked_for_power_saver_poster_) {
- is_blocked_for_power_saver_poster_ = false;
- if (!LoadingBlocked())
- LoadPlugin();
- }
+ is_blocked_for_power_saver_poster_ = false;
+ is_blocked_for_tinyness_ = false;
+ if (!LoadingBlocked())
+ LoadPlugin();
}
void LoadablePluginPlaceholder::ReplacePlugin(blink::WebPlugin* new_plugin) {
@@ -192,10 +186,12 @@ void LoadablePluginPlaceholder::OnUnobscuredRectUpdate(
const gfx::Rect& unobscured_rect) {
DCHECK(content::RenderThread::Get());
- // TODO(groby): Handle the case of power saver not being enabled.
if (!plugin() || !finished_loading_)
return;
+ if (!is_blocked_for_tinyness_ && !is_blocked_for_power_saver_poster_)
+ return;
+
if (unobscured_rect_ == unobscured_rect)
return;
@@ -213,12 +209,40 @@ void LoadablePluginPlaceholder::OnUnobscuredRectUpdate(
render_frame()->GetPeripheralContentStatus(
render_frame()->GetWebFrame()->top()->getSecurityOrigin(),
content_origin, gfx::Size(width, height));
- // If this is a "delay" placeholder, delegate decisions.
- if (is_delayed_placeholder_) {
- OnLoadedRectUpdate(gfx::Rect(x, y, width, height), status);
- is_delayed_placeholder_ = false;
+
+ bool plugin_is_tiny_and_blocked =
+ is_blocked_for_tinyness_ &&
+ status ==
+ content::RenderFrame::CONTENT_STATUS_ESSENTIAL_CROSS_ORIGIN_TINY;
+
+ // Early exit for plugins that we've discovered to be essential.
+ if (!plugin_is_tiny_and_blocked &&
+ status != content::RenderFrame::CONTENT_STATUS_PERIPHERAL) {
+ MarkPluginEssential(
+ heuristic_run_before_
+ ? PluginInstanceThrottler::UNTHROTTLE_METHOD_BY_SIZE_CHANGE
+ : PluginInstanceThrottler::UNTHROTTLE_METHOD_DO_NOT_RECORD);
+
+ if (!heuristic_run_before_ &&
+ status ==
+ content::RenderFrame::CONTENT_STATUS_ESSENTIAL_CROSS_ORIGIN_BIG) {
+ render_frame()->WhitelistContentOrigin(content_origin);
+ }
+
return;
}
+ heuristic_run_before_ = true;
+
+ if (is_blocked_for_tinyness_) {
+ if (plugin_is_tiny_and_blocked) {
+ OnBlockedTinyContent();
+ } else {
+ is_blocked_for_tinyness_ = false;
+ if (!LoadingBlocked()) {
+ LoadPlugin();
+ }
+ }
+ }
if (is_blocked_for_power_saver_poster_) {
// Adjust poster container padding and dimensions to center play button for
@@ -228,21 +252,6 @@ void LoadablePluginPlaceholder::OnUnobscuredRectUpdate(
height);
plugin()->web_view()->mainFrame()->executeScript(
blink::WebScriptSource(base::UTF8ToUTF16(script)));
-
- if (status != content::RenderFrame::CONTENT_STATUS_PERIPHERAL) {
- MarkPluginEssential(
- heuristic_run_before_
- ? PluginInstanceThrottler::UNTHROTTLE_METHOD_BY_SIZE_CHANGE
- : PluginInstanceThrottler::UNTHROTTLE_METHOD_DO_NOT_RECORD);
-
- if (!heuristic_run_before_ &&
- status ==
- content::RenderFrame::CONTENT_STATUS_ESSENTIAL_CROSS_ORIGIN_BIG) {
- render_frame()->WhitelistContentOrigin(content_origin);
- }
- }
-
- heuristic_run_before_ = true;
}
}
@@ -358,8 +367,8 @@ const std::string& LoadablePluginPlaceholder::GetIdentifier() const {
bool LoadablePluginPlaceholder::LoadingBlocked() const {
DCHECK(allow_loading_);
- return is_blocked_for_background_tab_ || is_blocked_for_power_saver_poster_ ||
- is_blocked_for_prerendering_;
+ return is_blocked_for_tinyness_ || is_blocked_for_background_tab_ ||
+ is_blocked_for_power_saver_poster_ || is_blocked_for_prerendering_;
}
} // namespace plugins
« no previous file with comments | « components/plugins/renderer/loadable_plugin_placeholder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698