OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebContentsView
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/content/public/browser/
web_contents_view.h
20
// The
WebContentsView
is an interface that is implemented by the platform-
23
class CONTENT_EXPORT
WebContentsView
{
25
virtual ~
WebContentsView
() {}
web_contents.h
50
class
WebContentsView
;
198
// The
WebContentsView
will never change and is guaranteed non-NULL.
199
virtual
WebContentsView
* GetView() const = 0;
/external/chromium_org/content/port/browser/
web_contents_view_port.h
15
// This is the larger
WebContentsView
interface exposed only within content/ and
17
class CONTENT_EXPORT WebContentsViewPort : public
WebContentsView
{
/external/chromium_org/content/browser/web_contents/
interstitial_page_impl.h
24
class
WebContentsView
;
154
// Creates the
WebContentsView
that shows the interstitial RVH.
156
virtual
WebContentsView
* CreateWebContentsView();
web_contents_view_guest.h
39
void OnGuestInitialized(
WebContentsView
* parent_view);
41
//
WebContentsView
implementation --------------------------------------------
99
// The platform dependent view backing this
WebContentsView
.
web_contents_view_guest.cc
62
void WebContentsViewGuest::OnGuestInitialized(
WebContentsView
* parent_view) {
interstitial_page_impl.cc
511
WebContentsView
* InterstitialPageImpl::CreateWebContentsView() {
514
WebContentsView
* web_contents_view = web_contents()->GetView();
web_contents_impl.h
226
virtual
WebContentsView
* GetView() const OVERRIDE;
[
all
...]
web_contents_impl_unittest.cc
189
virtual
WebContentsView
* CreateWebContentsView() OVERRIDE {
[
all
...]
web_contents_impl.cc
[
all
...]
/external/chromium_org/chrome/browser/ui/views/
find_bar_host.cc
161
// TODO(brettw): Focus() should be on
WebContentsView
.
363
content::
WebContentsView
* tab_view =
/external/chromium_org/chrome/browser/plugins/
plugin_observer.cc
269
content::
WebContentsView
* wcv = web_contents()->GetView();
/external/chromium_org/content/shell/
shell_gtk.cc
231
WebContentsView
* content_view = web_contents_->GetView();
/external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc
27
using content::
WebContentsView
;
Completed in 2013 milliseconds