Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 2654703002: Rename showVirtualKeyboard() to showVirtualKeyboardOnElementFocus(). (Closed)
Patch Set: Fixing Android-specific compile error in render_widget_input_handler.cc Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 void didOverscroll(const blink::WebFloatSize& overscrollDelta, 276 void didOverscroll(const blink::WebFloatSize& overscrollDelta,
277 const blink::WebFloatSize& accumulatedOverscroll, 277 const blink::WebFloatSize& accumulatedOverscroll,
278 const blink::WebFloatPoint& positionInViewport, 278 const blink::WebFloatPoint& positionInViewport,
279 const blink::WebFloatSize& velocityInViewport) override; 279 const blink::WebFloatSize& velocityInViewport) override;
280 void hasTouchEventHandlers(bool has_handlers) override; 280 void hasTouchEventHandlers(bool has_handlers) override;
281 void resetInputMethod() override; 281 void resetInputMethod() override;
282 blink::WebScreenInfo screenInfo() override; 282 blink::WebScreenInfo screenInfo() override;
283 void setToolTipText(const blink::WebString&, 283 void setToolTipText(const blink::WebString&,
284 blink::WebTextDirection hint) override; 284 blink::WebTextDirection hint) override;
285 void setTouchAction(blink::WebTouchAction touchAction) override; 285 void setTouchAction(blink::WebTouchAction touchAction) override;
286 void showVirtualKeyboard() override; 286 void showVirtualKeyboardOnElementFocus() override;
287 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, 287 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition,
288 const blink::WebNode& tappedNode, 288 const blink::WebNode& tappedNode,
289 bool pageChanged) override; 289 bool pageChanged) override;
290 blink::WebWidgetClient* widgetClient() override; 290 blink::WebWidgetClient* widgetClient() override;
291 291
292 // blink::WebViewClient implementation -------------------------------------- 292 // blink::WebViewClient implementation --------------------------------------
293 293
294 blink::WebView* createView(blink::WebLocalFrame* creator, 294 blink::WebView* createView(blink::WebLocalFrame* creator,
295 const blink::WebURLRequest& request, 295 const blink::WebURLRequest& request,
296 const blink::WebWindowFeatures& features, 296 const blink::WebWindowFeatures& features,
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 // use the Observer interface to filter IPC messages and receive frame change 843 // use the Observer interface to filter IPC messages and receive frame change
844 // notifications. 844 // notifications.
845 // --------------------------------------------------------------------------- 845 // ---------------------------------------------------------------------------
846 846
847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
848 }; 848 };
849 849
850 } // namespace content 850 } // namespace content
851 851
852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/input/render_widget_input_handler.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698