Lines Matching defs:WebContents

63 // WebContents is the core class in content/. A WebContents renders web content
67 // scoped_ptr<content::WebContents> web_contents(
68 // content::WebContents::Create(
69 // content::WebContents::CreateParams(browser_context)));
74 // That's it; go to your kitchen, grab a scone, and chill. WebContents will do
78 // Each WebContents has exactly one NavigationController; each
79 // NavigationController belongs to one WebContents. The NavigationController can
81 // WebContents, navigate it backwards/forwards, etc. See navigation_controller.h
83 class WebContents : public PageNavigator,
99 // The opener WebContents is the WebContents that initiated this request,
101 WebContents* opener;
103 // If the opener is suppressed, then the new WebContents doesn't hold a
115 // If non-null then this WebContents will be hosted by a BrowserPlugin.
123 // Creates a new WebContents.
124 CONTENT_EXPORT static WebContents* Create(const CreateParams& params);
127 // the SessionStorageNamespaceMap of the WebContents. This can happen if
128 // you duplicate a WebContents, try to reconstitute it from a saved state,
129 // or when you create a new WebContents based on another one (eg., when
134 // they should not be shared by multiple WebContents, and what bad things
136 CONTENT_EXPORT static WebContents* CreateWithSessionStorage(
140 // Returns a WebContents that wraps the RenderViewHost, or NULL if the
141 // render view host's delegate isn't a WebContents.
142 CONTENT_EXPORT static WebContents* FromRenderViewHost(
145 CONTENT_EXPORT static WebContents* FromRenderFrameHost(RenderFrameHost* rfh);
147 virtual ~WebContents() {}
155 // Gets the controller for this WebContents.
159 // Returns the user browser context associated with this WebContents (via the
170 // not guaranteed to match the current page in this WebContents. A typical
176 // displayed in this WebContents. It represents the current security
227 // Enable the accessibility tree for this WebContents in the renderer,
252 // this WebContents. Page IDs are specific to a given SiteInstance and
253 // WebContents, corresponding to a specific RenderView in the renderer.
258 // this WebContents.
268 // Returns whether this WebContents is loading a resource.
271 // Returns whether this WebContents is loading and and the load is to a
276 // Returns whether this WebContents is waiting for a first-response for the
299 // Indicates whether the WebContents is being captured (e.g., for screenshots
309 // Indicates/Sets whether all audio output from this WebContents is muted.
327 // Get the last time that the WebContents was made active (either when it was
331 // Invoked when the WebContents becomes shown/hidden.
357 // Creates a new WebContents with the same state as this one. The returned
359 virtual WebContents* Clone() = 0;
418 // Sets focus to the appropriate element when the WebContents is shown the
472 // Returns true if this WebContents will notify about disconnection.
566 // Returns true if the WebContents is responsible for displaying a subframe
584 // Returns true if audio has recently been audible from the WebContents.
593 CONTENT_EXPORT static WebContents* FromJavaWebContents(
598 // WebContents is present.
608 WebContents() {}