| Index: chrome/browser/guestview/guestview_base.cc
|
| diff --git a/chrome/browser/guestview/guestview.cc b/chrome/browser/guestview/guestview_base.cc
|
| similarity index 58%
|
| rename from chrome/browser/guestview/guestview.cc
|
| rename to chrome/browser/guestview/guestview_base.cc
|
| index 7cd6c59bab5223afbebfa899d16778c66209e240..4097b0ab9b225103e7971337c8f7c66d18d38836 100644
|
| --- a/chrome/browser/guestview/guestview.cc
|
| +++ b/chrome/browser/guestview/guestview_base.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/guestview/guestview.h"
|
| +#include "chrome/browser/guestview/guestview_base.h"
|
|
|
| #include "base/lazy_instance.h"
|
| #include "chrome/browser/guestview/adview/adview_guest.h"
|
| @@ -20,32 +20,31 @@ using content::WebContents;
|
|
|
| namespace {
|
|
|
| -// <embedder_process_id, guest_instance_id> => GuestView*
|
| -typedef std::map<std::pair<int, int>, GuestView*> EmbedderGuestViewMap;
|
| +// <embedder_process_id, guest_instance_id> => GuestViewBase*
|
| +typedef std::map<std::pair<int, int>, GuestViewBase*> EmbedderGuestViewMap;
|
| static base::LazyInstance<EmbedderGuestViewMap> embedder_guestview_map =
|
| LAZY_INSTANCE_INITIALIZER;
|
|
|
| -typedef std::map<WebContents*, GuestView*> WebContentsGuestViewMap;
|
| +typedef std::map<WebContents*, GuestViewBase*> WebContentsGuestViewMap;
|
| static base::LazyInstance<WebContentsGuestViewMap> webcontents_guestview_map =
|
| LAZY_INSTANCE_INITIALIZER;
|
|
|
| } // namespace
|
|
|
| -GuestView::Event::Event(const std::string& name,
|
| - scoped_ptr<base::DictionaryValue> args)
|
| - : name_(name),
|
| - args_(args.Pass()) {
|
| +GuestViewBase::Event::Event(const std::string& name,
|
| + scoped_ptr<base::DictionaryValue> args)
|
| + : name_(name), args_(args.Pass()) {
|
| }
|
|
|
| -GuestView::Event::~Event() {
|
| +GuestViewBase::Event::~Event() {
|
| }
|
|
|
| -scoped_ptr<base::DictionaryValue> GuestView::Event::GetArguments() {
|
| +scoped_ptr<base::DictionaryValue> GuestViewBase::Event::GetArguments() {
|
| return args_.Pass();
|
| }
|
|
|
| -GuestView::GuestView(WebContents* guest_web_contents,
|
| - const std::string& embedder_extension_id)
|
| +GuestViewBase::GuestViewBase(WebContents* guest_web_contents,
|
| + const std::string& embedder_extension_id)
|
| : guest_web_contents_(guest_web_contents),
|
| embedder_web_contents_(NULL),
|
| embedder_extension_id_(embedder_extension_id),
|
| @@ -59,50 +58,40 @@ GuestView::GuestView(WebContents* guest_web_contents,
|
| }
|
|
|
| // static
|
| -GuestView::Type GuestView::GetViewTypeFromString(const std::string& api_type) {
|
| - if (api_type == "adview") {
|
| - return GuestView::ADVIEW;
|
| - } else if (api_type == "webview") {
|
| - return GuestView::WEBVIEW;
|
| - }
|
| - return GuestView::UNKNOWN;
|
| -}
|
| -
|
| -// static
|
| -GuestView* GuestView::Create(WebContents* guest_web_contents,
|
| - const std::string& embedder_extension_id,
|
| - GuestView::Type view_type) {
|
| - switch (view_type) {
|
| - case GuestView::WEBVIEW:
|
| - return new WebViewGuest(guest_web_contents, embedder_extension_id);
|
| - case GuestView::ADVIEW:
|
| - return new AdViewGuest(guest_web_contents, embedder_extension_id);
|
| - default:
|
| - NOTREACHED();
|
| - return NULL;
|
| +GuestViewBase* GuestViewBase::Create(WebContents* guest_web_contents,
|
| + const std::string& embedder_extension_id,
|
| + const std::string& view_type) {
|
| + if (view_type == "webview") {
|
| + return new WebViewGuest(guest_web_contents, embedder_extension_id);
|
| + } else if (view_type == "adview") {
|
| + return new AdViewGuest(guest_web_contents, embedder_extension_id);
|
| }
|
| + NOTREACHED();
|
| + return NULL;
|
| }
|
|
|
| // static
|
| -GuestView* GuestView::FromWebContents(WebContents* web_contents) {
|
| +GuestViewBase* GuestViewBase::FromWebContents(WebContents* web_contents) {
|
| WebContentsGuestViewMap* guest_map = webcontents_guestview_map.Pointer();
|
| WebContentsGuestViewMap::iterator it = guest_map->find(web_contents);
|
| return it == guest_map->end() ? NULL : it->second;
|
| }
|
|
|
| // static
|
| -GuestView* GuestView::From(int embedder_process_id, int guest_instance_id) {
|
| +GuestViewBase* GuestViewBase::From(int embedder_process_id,
|
| + int guest_instance_id) {
|
| EmbedderGuestViewMap* guest_map = embedder_guestview_map.Pointer();
|
| - EmbedderGuestViewMap::iterator it = guest_map->find(
|
| - std::make_pair(embedder_process_id, guest_instance_id));
|
| + EmbedderGuestViewMap::iterator it =
|
| + guest_map->find(std::make_pair(embedder_process_id, guest_instance_id));
|
| return it == guest_map->end() ? NULL : it->second;
|
| }
|
|
|
| // static
|
| -bool GuestView::GetGuestPartitionConfigForSite(const GURL& site,
|
| - std::string* partition_domain,
|
| - std::string* partition_name,
|
| - bool* in_memory) {
|
| +bool GuestViewBase::GetGuestPartitionConfigForSite(
|
| + const GURL& site,
|
| + std::string* partition_domain,
|
| + std::string* partition_name,
|
| + bool* in_memory) {
|
| if (!site.SchemeIs(content::kGuestScheme))
|
| return false;
|
|
|
| @@ -115,31 +104,32 @@ bool GuestView::GetGuestPartitionConfigForSite(const GURL& site,
|
| *in_memory = (site.path() != "/persist");
|
| // The partition name is user supplied value, which we have encoded when the
|
| // URL was created, so it needs to be decoded.
|
| - *partition_name = net::UnescapeURLComponent(site.query(),
|
| - net::UnescapeRule::NORMAL);
|
| + *partition_name =
|
| + net::UnescapeURLComponent(site.query(), net::UnescapeRule::NORMAL);
|
| return true;
|
| }
|
|
|
| // static
|
| -void GuestView::GetDefaultContentSettingRules(
|
| - RendererContentSettingRules* rules, bool incognito) {
|
| - rules->image_rules.push_back(ContentSettingPatternSource(
|
| - ContentSettingsPattern::Wildcard(),
|
| - ContentSettingsPattern::Wildcard(),
|
| - CONTENT_SETTING_ALLOW,
|
| - std::string(),
|
| - incognito));
|
| -
|
| - rules->script_rules.push_back(ContentSettingPatternSource(
|
| - ContentSettingsPattern::Wildcard(),
|
| - ContentSettingsPattern::Wildcard(),
|
| - CONTENT_SETTING_ALLOW,
|
| - std::string(),
|
| - incognito));
|
| -}
|
| -
|
| -void GuestView::Attach(content::WebContents* embedder_web_contents,
|
| - const base::DictionaryValue& args) {
|
| +void GuestViewBase::GetDefaultContentSettingRules(
|
| + RendererContentSettingRules* rules,
|
| + bool incognito) {
|
| + rules->image_rules.push_back(
|
| + ContentSettingPatternSource(ContentSettingsPattern::Wildcard(),
|
| + ContentSettingsPattern::Wildcard(),
|
| + CONTENT_SETTING_ALLOW,
|
| + std::string(),
|
| + incognito));
|
| +
|
| + rules->script_rules.push_back(
|
| + ContentSettingPatternSource(ContentSettingsPattern::Wildcard(),
|
| + ContentSettingsPattern::Wildcard(),
|
| + CONTENT_SETTING_ALLOW,
|
| + std::string(),
|
| + incognito));
|
| +}
|
| +
|
| +void GuestViewBase::Attach(content::WebContents* embedder_web_contents,
|
| + const base::DictionaryValue& args) {
|
| embedder_web_contents_ = embedder_web_contents;
|
| embedder_render_process_id_ =
|
| embedder_web_contents->GetRenderProcessHost()->GetID();
|
| @@ -148,7 +138,7 @@ void GuestView::Attach(content::WebContents* embedder_web_contents,
|
| std::pair<int, int> key(embedder_render_process_id_, guest_instance_id_);
|
| embedder_guestview_map.Get().insert(std::make_pair(key, this));
|
|
|
| - // GuestView::Attach is called prior to initialization (and initial
|
| + // GuestViewBase::Attach is called prior to initialization (and initial
|
| // navigation) of the guest in the content layer in order to permit mapping
|
| // the necessary associations between the <*view> element and its guest. This
|
| // is needed by the <webview> WebRequest API to allow intercepting resource
|
| @@ -160,23 +150,11 @@ void GuestView::Attach(content::WebContents* embedder_web_contents,
|
|
|
| base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| - base::Bind(&GuestView::SendQueuedEvents,
|
| + base::Bind(&GuestViewBase::SendQueuedEvents,
|
| weak_ptr_factory_.GetWeakPtr()));
|
| }
|
|
|
| -GuestView::Type GuestView::GetViewType() const {
|
| - return GuestView::UNKNOWN;
|
| -}
|
| -
|
| -WebViewGuest* GuestView::AsWebView() {
|
| - return NULL;
|
| -}
|
| -
|
| -AdViewGuest* GuestView::AsAdView() {
|
| - return NULL;
|
| -}
|
| -
|
| -GuestView::~GuestView() {
|
| +GuestViewBase::~GuestViewBase() {
|
| std::pair<int, int> key(embedder_render_process_id_, guest_instance_id_);
|
| embedder_guestview_map.Get().erase(key);
|
|
|
| @@ -185,7 +163,7 @@ GuestView::~GuestView() {
|
| pending_events_.clear();
|
| }
|
|
|
| -void GuestView::DispatchEvent(Event* event) {
|
| +void GuestViewBase::DispatchEvent(Event* event) {
|
| scoped_ptr<Event> event_ptr(event);
|
| if (!in_extension()) {
|
| NOTREACHED();
|
| @@ -206,12 +184,16 @@ void GuestView::DispatchEvent(Event* event) {
|
| args->Append(event->GetArguments().release());
|
|
|
| extensions::EventRouter::DispatchEvent(
|
| - embedder_web_contents_, profile, embedder_extension_id_,
|
| - event->name(), args.Pass(),
|
| - extensions::EventRouter::USER_GESTURE_UNKNOWN, info);
|
| + embedder_web_contents_,
|
| + profile,
|
| + embedder_extension_id_,
|
| + event->name(),
|
| + args.Pass(),
|
| + extensions::EventRouter::USER_GESTURE_UNKNOWN,
|
| + info);
|
| }
|
|
|
| -void GuestView::SendQueuedEvents() {
|
| +void GuestViewBase::SendQueuedEvents() {
|
| if (!attached())
|
| return;
|
|
|
|
|