Searched refs:web_contents_ (Results 1 - 25 of 228) sorted by relevance

12345678910

/external/chromium_org/content/public/browser/
H A Dweb_contents_observer.cc14 : web_contents_(NULL) {
19 : web_contents_(NULL) {
23 if (web_contents_)
24 web_contents_->RemoveObserver(this);
28 return web_contents_;
32 if (web_contents_)
33 web_contents_->RemoveObserver(this);
34 web_contents_ = static_cast<WebContentsImpl*>(web_contents);
35 if (web_contents_) {
36 web_contents_
[all...]
/external/chromium_org/chrome/browser/sync/glue/
H A Dsynced_tab_delegate_android.cc23 : web_contents_(NULL), tab_android_(tab_android) {}
28 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
37 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
42 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
47 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
52 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
57 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
62 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
67 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
72 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dconstrained_web_dialog_delegate_base.cc33 web_contents_.reset(
37 web_contents_->SetDelegate(tab_delegate);
39 web_contents_->SetDelegate(this);
42 web_contents_->GetMutableRendererPrefs(),
44 web_contents_->GetRenderViewHost()->SyncRendererPrefs();
47 ConstrainedWebDialogUI::SetConstrainedDelegate(web_contents_.get(), this);
49 web_contents_->GetController().LoadURL(delegate->GetDialogContentURL(),
57 ignore_result(web_contents_.release());
72 CloseContents(web_contents_.get());
90 return web_contents_
[all...]
/external/chromium_org/chrome/browser/ui/sync/
H A Dtab_contents_synced_tab_delegate.cc27 : web_contents_(web_contents), sync_session_id_(0) {}
32 return SessionTabHelper::FromWebContents(web_contents_)->window_id().id();
36 return SessionTabHelper::FromWebContents(web_contents_)->session_id().id();
40 return web_contents_->IsBeingDestroyed();
44 return Profile::FromBrowserContext(web_contents_->GetBrowserContext());
49 extensions::TabHelper::FromWebContents(web_contents_)->extension_app());
54 return web_contents_->GetController().GetCurrentEntryIndex();
58 return web_contents_->GetController().GetEntryCount();
62 return web_contents_->GetController().GetPendingEntryIndex();
66 return web_contents_
[all...]
/external/chromium_org/ui/views/controls/webview/
H A Dwebview.cc36 web_contents_(NULL),
49 return web_contents_;
54 if (!web_contents_) {
56 web_contents_ = wc_owner_.get();
57 web_contents_->SetDelegate(this);
63 if (web_contents == web_contents_)
67 web_contents_ = web_contents;
118 return web_contents_ && !web_contents_->IsCrashed();
124 return !!web_contents_;
[all...]
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_view_android.cc31 : web_contents_(web_contents),
43 web_contents_->GetRenderWidgetHostView());
47 if (web_contents_->ShowingInterstitialPage()) {
50 web_contents_->GetInterstitialPage())->
78 RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
91 web_contents_->GetRenderViewHost());
100 RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
106 if (web_contents_->ShowingInterstitialPage())
107 web_contents_->GetInterstitialPage()->Focus();
109 web_contents_
[all...]
H A Dweb_drag_source_win.cc39 web_contents_(static_cast<WebContentsImpl*>(web_contents)),
60 if (!web_contents_)
66 web_contents_->DragSourceEndedAt(client.x(), client.y(),
85 if (!web_contents_)
91 web_contents_->DragSourceEndedAt(client.x(), client.y(), screen.x(),
104 if (!web_contents_)
110 web_contents_->DragSourceMovedTo(client.x(), client.y(),
121 web_contents_ = NULL;
126 web_contents_ = NULL;
H A Dweb_drag_dest_win.cc104 : web_contents_(web_contents) {}
128 web_contents_->OpenURL(params);
133 WebContents* web_contents_; member in class:content::InterstitialDropTarget
140 web_contents_(web_contents),
155 current_rvh_ = web_contents_->GetRenderViewHost();
168 canceled_ = !web_contents_->GetDelegate()->CanDragEnter(
169 web_contents_,
176 delegate_->DragInitialize(web_contents_);
181 if (web_contents_->ShowingInterstitialPage())
189 web_contents_
[all...]
H A Dweb_contents_view_gtk.cc91 : web_contents_(web_contents),
119 RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
152 if (web_contents_->ShowingInterstitialPage()) {
153 web_contents_->GetInterstitialPage()->Focus();
160 if (web_contents_->FocusLocationBarByDefault())
161 web_contents_->SetFocusToLocationBar(false);
217 G_CALLBACK(OnLeaveNotify), web_contents_);
219 G_CALLBACK(OnMouseMove), web_contents_);
221 G_CALLBACK(OnMouseScroll), web_contents_);
234 if (rvh == web_contents_
[all...]
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dtemplate_url_fetcher_ui_callbacks.cc22 web_contents_(web_contents) {
25 content::Source<WebContents>(web_contents_));
47 DCHECK(source == content::Source<WebContents>(web_contents_));
49 web_contents_ = NULL;
/external/chromium_org/content/shell/
H A Dshell_web_contents_view_delegate_win.cc66 : web_contents_(web_contents) {
94 web_contents_->GetController().CanGoBack());
100 web_contents_->GetController().CanGoForward());
176 ClientToScreen(web_contents_->GetView()->GetNativeView(), &point);
183 web_contents_->GetView()->GetContentNativeView(),
194 web_contents_->GetRenderViewHost()->Cut();
197 web_contents_->GetRenderViewHost()->Copy();
200 web_contents_->GetRenderViewHost()->Paste();
203 web_contents_->GetRenderViewHost()->Delete();
216 web_contents_
[all...]
/external/chromium_org/chrome/browser/ui/gtk/download/
H A Ddownload_started_animation_gtk.cc73 WebContents* web_contents_; member in class:__anon6122::DownloadStartedAnimationGtk
92 web_contents_(web_contents) {
105 web_contents_->GetView()->GetContainerBounds(&web_contents_bounds_);
112 content::Source<WebContents>(web_contents_));
116 content::Source<WebContents>(web_contents_));
146 if (!web_contents_)
160 if (!web_contents_)
168 content::Source<WebContents>(web_contents_));
172 content::Source<WebContents>(web_contents_));
174 web_contents_
[all...]
/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_started_animation_views.cc66 WebContents* web_contents_; member in class:__anon6331::DownloadStartedAnimationWin
85 web_contents_(web_contents) {
94 web_contents_->GetView()->GetContainerBounds(&web_contents_bounds_);
101 content::Source<WebContents>(web_contents_));
105 content::Source<WebContents>(web_contents_));
114 params.parent = web_contents_->GetView()->GetNativeView();
125 if (!web_contents_)
142 if (!web_contents_)
148 content::Source<WebContents>(web_contents_));
152 content::Source<WebContents>(web_contents_));
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dcolor_chooser_win.cc39 content::WebContents* web_contents_; member in class:ColorChooserWin
56 : web_contents_(web_contents) {
80 if (web_contents_)
81 web_contents_->DidChooseColorInColorChooser(color);
91 if (web_contents_)
92 web_contents_->DidEndColorChooser();
H A Dcolor_chooser_aura.cc47 content::WebContents* web_contents_; member in class:__anon6318::ColorChooserAura
56 : web_contents_(web_contents) {
65 if (web_contents_)
66 web_contents_->DidChooseColorInColorChooser(color);
90 if (web_contents_)
91 web_contents_->DidEndColorChooser();
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_popup_controller_browsertest.cc76 web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
77 ASSERT_TRUE(web_contents_ != NULL);
78 Observe(web_contents_); variable
81 AutofillDriverImpl::FromWebContents(web_contents_);
84 web_contents_,
93 DCHECK_EQ(web_contents_, web_contents);
99 content::WebContents* web_contents_; member in class:autofill::AutofillPopupControllerBrowserTest
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_host.cc53 web_contents_.reset(content::WebContents::Create(create_params));
54 extensions::SetViewType(web_contents_.get(), extensions::VIEW_TYPE_PANEL);
55 web_contents_->SetDelegate(this);
56 content::WebContentsObserver::Observe(web_contents_.get());
60 SessionTabHelper::CreateForWebContents(web_contents_.get());
61 SessionTabHelper::FromWebContents(web_contents_.get())->SetWindowID(
64 FaviconTabHelper::CreateForWebContents(web_contents_.get());
65 PrefsTabHelper::CreateForWebContents(web_contents_.get());
67 web_contents_->GetController().LoadURL(
72 // Cannot do a web_contents_
[all...]
/external/chromium_org/apps/
H A Dapp_window_contents.cc37 web_contents_.reset(content::WebContents::Create(
41 content::WebContentsObserver::Observe(web_contents_.get());
42 web_contents_->GetMutableRendererPrefs()->
44 web_contents_->GetRenderViewHost()->SyncRendererPrefs();
52 if (web_contents_->GetRenderViewHost()->GetProcess()->GetID() ==
54 SuspendRenderViewHost(web_contents_->GetRenderViewHost());
57 << web_contents_->GetRenderViewHost()->GetProcess()->GetID()
73 web_contents_->GetController().LoadURL(
97 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost();
107 content::RenderViewHost* rvh = web_contents_
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dballoon_host.cc48 web_contents_.reset();
120 CloseContents(web_contents_.get());
134 web_contents_->GetRenderViewHost());
138 DCHECK(!web_contents_.get()) << "BalloonViewHost already initialized.";
139 web_contents_.reset(WebContents::Create(
142 web_contents_.get(), extensions::VIEW_TYPE_NOTIFICATION);
143 web_contents_->SetDelegate(this);
144 Observe(web_contents_.get());
146 web_contents_->GetMutableRendererPrefs(), balloon_->profile());
147 web_contents_
[all...]
/external/chromium_org/chrome/browser/ui/android/tab_contents/
H A Dchrome_web_contents_view_delegate_android.cc17 : web_contents_(web_contents) {
36 content::ContentViewCore::FromWebContents(web_contents_);
44 TabAndroid* tab = TabAndroid::FromWebContents(web_contents_);
/external/chromium_org/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog.cc22 web_contents_(web_contents) {
30 web_contents_->GetDelegate()->ActivateContents(web_contents_);
/external/chromium_org/chrome/browser/ui/views/tab_contents/
H A Dchrome_web_contents_view_delegate_views.cc37 : web_contents_(web_contents) {
65 SadTabHelper* sad_tab_helper = SadTabHelper::FromWebContents(web_contents_);
75 WebContentsModalDialogManager::FromWebContents(web_contents_);
140 RenderViewContextMenuViews::Create(web_contents_, params));
152 web_contents_->GetView()->GetNativeView();
162 ClientToScreen(web_contents_->GetView()->GetNativeView(), &temp);
174 SadTabHelper* sad_tab_helper = SadTabHelper::FromWebContents(web_contents_);
184 web_contents_->GetView()->GetNativeView());
194 if (web_contents_->FocusLocationBarByDefault()) {
195 if (web_contents_
[all...]
/external/chromium_org/components/web_contents_delegate_android/
H A Dcolor_chooser_android.cc16 : web_contents_(web_contents) {
46 web_contents_->DidChooseColorInColorChooser(color);
47 web_contents_->DidEndColorChooser();
/external/chromium_org/android_webview/native/
H A Daw_web_contents_view_delegate.cc22 : web_contents_(web_contents) {
45 content::ContentViewCore::FromWebContents(web_contents_);
/external/chromium_org/chrome/browser/autofill/
H A Dautofill_driver_impl_browsertest.cc86 web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
87 ASSERT_TRUE(web_contents_ != NULL);
88 Observe(web_contents_); variable
91 autofill_driver_.reset(new TestAutofillDriverImpl(web_contents_,
99 DCHECK_EQ(web_contents_, web_contents);
104 content::WebContents* web_contents_; member in class:autofill::AutofillDriverImplBrowserTest
119 content::Source<content::WebContents>(web_contents_));
135 &(web_contents_->GetController())));

Completed in 334 milliseconds

12345678910