OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebContentsImpl
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/browser/web_contents/
web_contents_impl.h
61
class
WebContentsImpl
;
71
WebContentsImpl
* web_contents,
75
class CONTENT_EXPORT
WebContentsImpl
82
virtual ~
WebContentsImpl
();
84
static
WebContentsImpl
* CreateWithOpener(
86
WebContentsImpl
* opener);
88
// Returns the opener
WebContentsImpl
, if any. This can be set to null if the
90
WebContentsImpl
* opener() const { return opener_; }
117
//
WebContentsImpl
to be at least |page_id|.
120
// Updates the max page ID for the given SiteInstance in this
WebContentsImpl
[
all
...]
web_contents_impl.cc
108
// If a
WebContentsImpl
is told to navigate to a different web site (as
132
//
WebContentsImpl
. This isn't ideal, but it doesn't affect any functionality.
136
// method of
WebContentsImpl
on the UI thread, which sends a SwapOut message
271
return
WebContentsImpl
::CreateWithOpener(
272
params, static_cast<
WebContentsImpl
*>(params.opener));
278
WebContentsImpl
* new_contents = new
WebContentsImpl
(
310
//
WebContentsImpl
::DestructionObserver ----------------------------------------
312
class
WebContentsImpl
::DestructionObserver : public WebContentsObserver {
314
DestructionObserver(
WebContentsImpl
* owner, WebContents* watched_contents
[
all
...]
Completed in 440 milliseconds