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

Unified Diff: content/renderer/pepper/pepper_plugin_instance_impl.cc

Issue 1341563002: Plugin Power Saver: Improve origin handling esp. with OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: content/renderer/pepper/pepper_plugin_instance_impl.cc
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
index 27b2d73c91820dbc154bd9094a311f7299b3bc48..8a9d98553abea982d104307b179400b6c3c3990e 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -119,6 +119,7 @@
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_skia_rep.h"
#include "ui/gfx/range/range.h"
+#include "url/origin.h"
#include "v8/include/v8.h"
#if defined(OS_CHROMEOS)
@@ -1608,7 +1609,7 @@ void PepperPluginInstanceImpl::SendDidChangeView() {
}
if (throttler_) {
- throttler_->Initialize(render_frame_, plugin_url_.GetOrigin(),
+ throttler_->Initialize(render_frame_, url::Origin(plugin_url_),
module()->name(), unobscured_rect_.size());
}
}

Powered by Google App Engine
This is Rietveld 408576698