Searched defs:GuestView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/guestview/
H A Dguestview.h18 // A GuestView is the base class browser-side API implementation for a <*view>
19 // tag. GuestView maintains an association between a guest WebContents and an
22 class GuestView : public content::BrowserPluginGuestDelegate { class in inherits:content::BrowserPluginGuestDelegate
46 static GuestView* Create(content::WebContents* guest_web_contents,
50 static GuestView* FromWebContents(content::WebContents* web_contents);
52 static GuestView* From(int embedder_process_id, int instance_id);
56 // A GuestView can specify both the partition name and whether the storage
84 // Returns a WebViewGuest if this GuestView belongs to a <webview>.
87 // Returns an AdViewGuest if the GuestView belongs to an <adview>.
109 GuestView(conten
[all...]
H A Dguestview.cc23 // <embedder_process_id, guest_instance_id> => GuestView*
24 typedef std::map<std::pair<int, int>, GuestView*> EmbedderGuestViewMap;
28 typedef std::map<WebContents*, GuestView*> WebContentsGuestViewMap;
34 GuestView::Event::Event(const std::string& name,
40 GuestView::Event::~Event() {
43 scoped_ptr<DictionaryValue> GuestView::Event::GetArguments() {
47 GuestView::GuestView(WebContents* guest_web_contents, function in class:GuestView
61 GuestView::Type GuestView
[all...]

Completed in 86 milliseconds