Lines Matching defs:WebView

27 const char WebView::kViewClassName[] = "WebView";
30 // WebView, public:
32 WebView::WebView(content::BrowserContext* browser_context)
42 WebView::~WebView() {
47 content::WebContents* WebView::GetWebContents() {
56 void WebView::SetWebContents(content::WebContents* replacement) {
75 void WebView::SetEmbedFullscreenWidgetMode(bool enable) {
81 void WebView::LoadInitialURL(const GURL& url) {
87 void WebView::SetFastResize(bool fast_resize) {
91 void WebView::OnWebContentsFocused(content::WebContents* web_contents) {
97 void WebView::SetPreferredSize(const gfx::Size& preferred_size) {
103 // WebView, View overrides:
105 const char* WebView::GetClassName() const {
109 ui::TextInputClient* WebView::GetTextInputClient() {
127 scoped_ptr<content::WebContents> WebView::SwapWebContents(
139 void WebView::OnBoundsChanged(const gfx::Rect& previous_bounds) {
140 // In most cases, the holder is simply sized to fill this WebView's bounds.
157 // WebView is not large enough to contain the holder at the preferred size,
185 void WebView::ViewHierarchyChanged(
191 bool WebView::SkipDefaultKeyEventProcessing(const ui::KeyEvent& event) {
203 void WebView::OnFocus() {
208 void WebView::AboutToRequestFocusFromTabTraversal(bool reverse) {
213 void WebView::GetAccessibleState(ui::AXViewState* state) {
217 gfx::NativeViewAccessible WebView::GetNativeViewAccessible() {
227 gfx::Size WebView::GetPreferredSize() const {
235 // WebView, content::WebContentsDelegate implementation:
237 void WebView::WebContentsFocused(content::WebContents* web_contents) {
239 // The WebView is only the delegate of WebContentses it creates itself.
243 bool WebView::EmbedsFullscreenWidget() const {
249 // WebView, content::WebContentsObserver implementation:
251 void WebView::RenderViewDeleted(content::RenderViewHost* render_view_host) {
255 void WebView::RenderProcessGone(base::TerminationStatus status) {
259 void WebView::RenderViewHostChanged(content::RenderViewHost* old_host,
267 void WebView::DidShowFullscreenWidget(int routing_id) {
272 void WebView::DidDestroyFullscreenWidget(int routing_id) {
277 void WebView::DidToggleFullscreenModeForTab(bool entered_fullscreen) {
282 void WebView::DidAttachInterstitialPage() {
286 void WebView::DidDetachInterstitialPage() {
291 // WebView, private:
293 void WebView::AttachWebContents() {
294 // Prevents attachment if the WebView isn't already in a Widget, or it's
329 void WebView::DetachWebContents() {
344 void WebView::ReattachForFullscreenChange(bool enter_fullscreen) {
363 void WebView::NotifyMaybeTextInputClientChanged() {
370 content::WebContents* WebView::CreateWebContents(